diff --git a/README.md b/README.md
index 789bfd57e440431cc5729bac5515301fe03da243..d8760721ef11af0150e2075cb3849cc85faa11fc 100644
--- a/README.md
+++ b/README.md
@@ -1,93 +1,59 @@
-# Visualisation
+# HydroAnalytics
 
-
-
-## Getting started
-
-To make it easy for you to get started with GitLab, here's a list of recommended next steps.
-
-Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
-
-## Add your files
-
-- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
-- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
+This is an [Observable Framework](https://observablehq.com/framework/) app. To install the required dependencies, run:
 
 ```
-cd existing_repo
-git remote add origin https://gitlab.ec-lyon.fr/aqaffou/visualisation.git
-git branch -M main
-git push -uf origin main
+npm install
 ```
 
-## Integrate with your tools
-
-- [ ] [Set up project integrations](https://gitlab.ec-lyon.fr/aqaffou/visualisation/-/settings/integrations)
-
-## Collaborate with your team
-
-- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
-- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
-- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
-- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
-- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
-
-## Test and Deploy
-
-Use the built-in continuous integration in GitLab.
-
-- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
-- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
-- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
-- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
-- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
-
-***
+Then, to start the local preview server, run:
 
-# Editing this README
-
-When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
-
-## Suggestions for a good README
-
-Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
-
-## Name
-Choose a self-explaining name for your project.
-
-## Description
-Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
-
-## Badges
-On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
-
-## Visuals
-Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
-
-## Installation
-Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
-
-## Usage
-Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
+```
+npm run dev
+```
 
-## Support
-Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
+Then visit <http://localhost:3000> to preview your app.
+
+For more, see <https://observablehq.com/framework/getting-started>.
+
+## Project structure
+
+A typical Framework project looks like this:
+
+```ini
+.
+├─ src
+│  ├─ components
+│  │  └─ timeline.js           # an importable module
+│  ├─ data
+│  │  ├─ launches.csv.js       # a data loader
+│  │  └─ events.json           # a static data file
+│  ├─ example-dashboard.md     # a page
+│  ├─ example-report.md        # another page
+│  └─ index.md                 # the home page
+├─ .gitignore
+├─ observablehq.config.js      # the app config file
+├─ package.json
+└─ README.md
+```
 
-## Roadmap
-If you have ideas for releases in the future, it is a good idea to list them in the README.
+**`src`** - This is the “source root” — where your source files live. Pages go here. Each page is a Markdown file. Observable Framework uses [file-based routing](https://observablehq.com/framework/project-structure#routing), which means that the name of the file controls where the page is served. You can create as many pages as you like. Use folders to organize your pages.
 
-## Contributing
-State if you are open to contributions and what your requirements are for accepting them.
+**`src/index.md`** - This is the home page for your app. You can have as many additional pages as you’d like, but you should always have a home page, too.
 
-For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
+**`src/data`** - You can put [data loaders](https://observablehq.com/framework/data-loaders) or static data files anywhere in your source root, but we recommend putting them here.
 
-You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
+**`src/components`** - You can put shared [JavaScript modules](https://observablehq.com/framework/imports) anywhere in your source root, but we recommend putting them here. This helps you pull code out of Markdown files and into JavaScript modules, making it easier to reuse code across pages, write tests and run linters, and even share code with vanilla web applications.
 
-## Authors and acknowledgment
-Show your appreciation to those who have contributed to the project.
+**`observablehq.config.js`** - This is the [app configuration](https://observablehq.com/framework/config) file, such as the pages and sections in the sidebar navigation, and the app’s title.
 
-## License
-For open source projects, say how it is licensed.
+## Command reference
 
-## Project status
-If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
+| Command           | Description                                              |
+| ----------------- | -------------------------------------------------------- |
+| `npm install`            | Install or reinstall dependencies                        |
+| `npm run dev`        | Start local preview server                               |
+| `npm run build`      | Build your static site, generating `./dist`              |
+| `npm run deploy`     | Deploy your app to Observable                            |
+| `npm run clean`      | Clear the local data loader cache                        |
+| `npm run observable` | Run commands like `observable help`                      |
diff --git a/package-lock.json b/package-lock.json
index cbd06ed346f62e1cbb75f30994743be4f7a80073..f9a03717889e6294f20bb91bfaa3a7072567ad60 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -6,11 +6,8 @@
     "": {
       "dependencies": {
         "@observablehq/framework": "^1.13.2",
-        "d3": "^7.9.0",
         "d3-dsv": "^3.0.1",
-        "d3-time-format": "^4.1.0",
-        "observable": "^2.1.4",
-        "topojson-client": "^3.1.0"
+        "d3-time-format": "^4.1.0"
       },
       "devDependencies": {
         "rimraf": "^5.0.5"
@@ -1419,46 +1416,6 @@
       "integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==",
       "license": "MIT"
     },
-    "node_modules/d3": {
-      "version": "7.9.0",
-      "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz",
-      "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==",
-      "dependencies": {
-        "d3-array": "3",
-        "d3-axis": "3",
-        "d3-brush": "3",
-        "d3-chord": "3",
-        "d3-color": "3",
-        "d3-contour": "4",
-        "d3-delaunay": "6",
-        "d3-dispatch": "3",
-        "d3-drag": "3",
-        "d3-dsv": "3",
-        "d3-ease": "3",
-        "d3-fetch": "3",
-        "d3-force": "3",
-        "d3-format": "3",
-        "d3-geo": "3",
-        "d3-hierarchy": "3",
-        "d3-interpolate": "3",
-        "d3-path": "3",
-        "d3-polygon": "3",
-        "d3-quadtree": "3",
-        "d3-random": "3",
-        "d3-scale": "4",
-        "d3-scale-chromatic": "3",
-        "d3-selection": "3",
-        "d3-shape": "3",
-        "d3-time": "3",
-        "d3-time-format": "4",
-        "d3-timer": "3",
-        "d3-transition": "3",
-        "d3-zoom": "3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
     "node_modules/d3-array": {
       "version": "3.2.4",
       "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
@@ -1471,90 +1428,6 @@
         "node": ">=12"
       }
     },
-    "node_modules/d3-axis": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz",
-      "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-brush": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz",
-      "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==",
-      "dependencies": {
-        "d3-dispatch": "1 - 3",
-        "d3-drag": "2 - 3",
-        "d3-interpolate": "1 - 3",
-        "d3-selection": "3",
-        "d3-transition": "3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-chord": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz",
-      "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==",
-      "dependencies": {
-        "d3-path": "1 - 3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-color": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
-      "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-contour": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz",
-      "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==",
-      "dependencies": {
-        "d3-array": "^3.2.0"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-delaunay": {
-      "version": "6.0.4",
-      "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz",
-      "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==",
-      "dependencies": {
-        "delaunator": "5"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-dispatch": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
-      "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-drag": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz",
-      "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==",
-      "dependencies": {
-        "d3-dispatch": "1 - 3",
-        "d3-selection": "3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
     "node_modules/d3-dsv": {
       "version": "3.0.1",
       "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz",
@@ -1580,57 +1453,6 @@
         "node": ">=12"
       }
     },
-    "node_modules/d3-ease": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
-      "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-fetch": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz",
-      "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==",
-      "dependencies": {
-        "d3-dsv": "1 - 3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-force": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
-      "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
-      "dependencies": {
-        "d3-dispatch": "1 - 3",
-        "d3-quadtree": "1 - 3",
-        "d3-timer": "1 - 3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-format": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
-      "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-geo": {
-      "version": "3.1.1",
-      "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz",
-      "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==",
-      "dependencies": {
-        "d3-array": "2.5.0 - 3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
     "node_modules/d3-hierarchy": {
       "version": "3.1.2",
       "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
@@ -1640,95 +1462,6 @@
         "node": ">=12"
       }
     },
-    "node_modules/d3-interpolate": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
-      "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
-      "dependencies": {
-        "d3-color": "1 - 3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-path": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
-      "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-polygon": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz",
-      "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-quadtree": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
-      "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-random": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz",
-      "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-scale": {
-      "version": "4.0.2",
-      "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
-      "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
-      "dependencies": {
-        "d3-array": "2.10.0 - 3",
-        "d3-format": "1 - 3",
-        "d3-interpolate": "1.2.0 - 3",
-        "d3-time": "2.1.1 - 3",
-        "d3-time-format": "2 - 4"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-scale-chromatic": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
-      "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==",
-      "dependencies": {
-        "d3-color": "1 - 3",
-        "d3-interpolate": "1 - 3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-selection": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
-      "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-shape": {
-      "version": "3.2.0",
-      "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
-      "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
-      "dependencies": {
-        "d3-path": "^3.1.0"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
     "node_modules/d3-time": {
       "version": "3.1.0",
       "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
@@ -1753,47 +1486,6 @@
         "node": ">=12"
       }
     },
-    "node_modules/d3-timer": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
-      "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
-      "engines": {
-        "node": ">=12"
-      }
-    },
-    "node_modules/d3-transition": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz",
-      "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==",
-      "dependencies": {
-        "d3-color": "1 - 3",
-        "d3-dispatch": "1 - 3",
-        "d3-ease": "1 - 3",
-        "d3-interpolate": "1 - 3",
-        "d3-timer": "1 - 3"
-      },
-      "engines": {
-        "node": ">=12"
-      },
-      "peerDependencies": {
-        "d3-selection": "2 - 3"
-      }
-    },
-    "node_modules/d3-zoom": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz",
-      "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==",
-      "dependencies": {
-        "d3-dispatch": "1 - 3",
-        "d3-drag": "2 - 3",
-        "d3-interpolate": "1 - 3",
-        "d3-selection": "2 - 3",
-        "d3-transition": "2 - 3"
-      },
-      "engines": {
-        "node": ">=12"
-      }
-    },
     "node_modules/data-urls": {
       "version": "5.0.0",
       "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz",
@@ -1879,14 +1571,6 @@
         "url": "https://github.com/sponsors/sindresorhus"
       }
     },
-    "node_modules/delaunator": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz",
-      "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==",
-      "dependencies": {
-        "robust-predicates": "^3.0.2"
-      }
-    },
     "node_modules/delayed-stream": {
       "version": "1.0.0",
       "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
@@ -2915,11 +2599,6 @@
       "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
       "license": "MIT"
     },
-    "node_modules/observable": {
-      "version": "2.1.4",
-      "resolved": "https://registry.npmjs.org/observable/-/observable-2.1.4.tgz",
-      "integrity": "sha512-YP03BvfvWSu3IZgcByNp5d9mNJAMjJG8TI2z9rrAR0jQvVH6csE+3VPkAemR0n3hOlI5vJ7gWgg0YPGUFZaQBg=="
-    },
     "node_modules/on-finished": {
       "version": "2.4.1",
       "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
@@ -3188,11 +2867,6 @@
         "url": "https://github.com/sponsors/isaacs"
       }
     },
-    "node_modules/robust-predicates": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz",
-      "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg=="
-    },
     "node_modules/rollup": {
       "version": "4.34.7",
       "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz",
@@ -3649,24 +3323,6 @@
         "node": ">=0.6"
       }
     },
-    "node_modules/topojson-client": {
-      "version": "3.1.0",
-      "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
-      "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
-      "dependencies": {
-        "commander": "2"
-      },
-      "bin": {
-        "topo2geo": "bin/topo2geo",
-        "topomerge": "bin/topomerge",
-        "topoquantize": "bin/topoquantize"
-      }
-    },
-    "node_modules/topojson-client/node_modules/commander": {
-      "version": "2.20.3",
-      "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
-      "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
-    },
     "node_modules/tough-cookie": {
       "version": "4.1.4",
       "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz",
diff --git a/package.json b/package.json
index efa988979bc38a9c052914990bda205154bf3834..07c85f083e68084c3203610a6d1efc60380519c7 100644
--- a/package.json
+++ b/package.json
@@ -10,11 +10,8 @@
   },
   "dependencies": {
     "@observablehq/framework": "^1.13.2",
-    "d3": "^7.9.0",
     "d3-dsv": "^3.0.1",
-    "d3-time-format": "^4.1.0",
-    "observable": "^2.1.4",
-    "topojson-client": "^3.1.0"
+    "d3-time-format": "^4.1.0"
   },
   "devDependencies": {
     "rimraf": "^5.0.5"
diff --git a/src/dashboard.md b/src/dashboard.md
new file mode 100644
index 0000000000000000000000000000000000000000..65dc276056f054bb407dab846eadf8372cf50ffd
--- /dev/null
+++ b/src/dashboard.md
@@ -0,0 +1,648 @@
+---
+theme: dashboard
+title: Dashboard
+toc: false
+---
+
+# Dashboard
+
+```js
+const launches2 = FileAttachment("data/cleaned_waterplease_final.csv").csv({
+  typed: true,
+  columns: {
+    Year: Number,
+    Value: Number,
+    Area: String,
+    VariableGroup: String,
+    Subgroup: String,
+    Variable: String,
+    Unit: String,
+    Symbol: String,
+    IsAggregate: (d) => d === "False",
+  },
+});
+const waterData = await launches2;
+```
+
+```js
+const countrySelector = view(
+  Inputs.select([...new Set(waterData.map((d) => d.Area))].sort(), {
+    label: "Select Country",
+    value: [...new Set(waterData.map((d) => d.Area))][0],
+    width: "100%",
+  })
+);
+const subgroupeSelector = view(
+  Inputs.select([...new Set(waterData.map((d) => d.Subgroup))].sort(), {
+    label: "Select SubGroup",
+    value: "Water withdrawal by sector",
+    width: "100%",
+  })
+);
+const unitSelector = view(
+  Inputs.select([...new Set(waterData.map((d) => d.Unit))].sort(), {
+    label: "Select Unit",
+    value: "10^9 m3/year",
+    width: "100%",
+  })
+);
+
+const excludeEnvFlow = view(
+  Inputs.radio([true, false], {
+    label: "Exclude Environmental Flow Requirements",
+    value: true,
+    width: "100%",
+  })
+);
+
+const years = Array.from(new Set(waterData.map((d) => d.Year))).sort();
+const selectedYear = view(
+  Inputs.range([Math.min(...years), Math.max(...years)], {
+    label: "Select a Year",
+    step: 1,
+    value: Math.min(...years),
+  })
+);
+```
+
+```js
+const colorData = Plot.scale({
+  color: {
+    type: "categorical",
+    domain: d3
+      .groupSort(
+        waterData,
+        (D) => -D.length,
+        (d) => d.Area
+      )
+      .filter((d) => d !== "Other"),
+    unknown: "var(--theme-foreground-muted)",
+  },
+});
+```
+
+<!-- waterLineChart Graphic -->
+
+```js
+const selectedCountryData = {
+  async value() {
+    return waterData.filter((d) => d.Area === countrySelector);
+  },
+};
+
+function waterLineChart(
+  selectedCountry,
+  selectedSubgroup,
+  selectedUnit,
+  excludeEFR,
+  containerWidth
+) {
+  const width = containerWidth || 650,
+    height = 700,
+    margin = { top: 220, right: 10, bottom: 70, left: 100 };
+
+  // Filtrer les données
+  let filteredData = waterData.filter((d) => d.Area === selectedCountry);
+
+  // Filtrer par sous-groupe
+  filteredData = filteredData.filter((d) => d.Subgroup === selectedSubgroup);
+
+  if (selectedSubgroup === "Water withdrawal by source") {
+    selectedUnit = "10^9 m3/year";
+  }
+
+  // Filtrer par unité
+  if (selectedUnit === "%") {
+    filteredData = filteredData.filter((d) => d.Variable.includes("%"));
+  } else if (selectedUnit === "m3/inhab/year") {
+    filteredData = filteredData.filter((d) =>
+      d.Variable.includes("per capita")
+    );
+  } else {
+    filteredData = filteredData.filter(
+      (d) => !d.Variable.includes("%") && !d.Variable.includes("per capita")
+    );
+  }
+
+  // Exclure "Environmental Flow Requirements" si demandé
+  if (excludeEFR) {
+    filteredData = filteredData.filter(
+      (d) => d.Variable !== "Environmental Flow Requirements"
+    );
+  }
+
+  // Regrouper les données par année
+  const groupedData = d3
+    .groups(filteredData, (d) => d.Year)
+    .map(([year, values]) => ({
+      year: +year,
+      values: values.map((d) => ({ variable: d.Variable, value: +d.Value })),
+    }));
+
+  // Sélection des années et variables
+  const years = Array.from(new Set(filteredData.map((d) => d.Year))).sort(
+    d3.ascending
+  );
+  const variables = Array.from(new Set(filteredData.map((d) => d.Variable)));
+
+  // Définir les échelles des axes
+  const x = d3
+    .scaleLinear()
+    .domain(d3.extent(groupedData, (d) => d.year))
+    .range([margin.left, width - margin.right]);
+
+  const y = d3
+    .scaleLinear()
+    .domain([
+      0,
+      d3.max(groupedData, (d) => d3.max(d.values, (v) => v.value)) || 1,
+    ])
+    .nice()
+    .range([height - margin.bottom, margin.top]);
+
+  const color = d3.scaleOrdinal(d3.schemeCategory10).domain(variables);
+
+  // Créer le SVG
+  const svg = d3.create("svg").attr("width", width).attr("height", height);
+
+  svg
+    .append("text")
+    .attr("x", width / 2)
+    .attr("y", 40)
+    .attr("text-anchor", "middle")
+    .style("font-size", "18px")
+    .style("fill", "white")
+    .style("font-weight", "bold")
+    .text(`${selectedSubgroup} in ${selectedCountry}`);
+
+  // Ajouter les axes
+  svg
+    .append("g")
+    .attr("transform", `translate(0, ${height - margin.bottom})`)
+    .call(d3.axisBottom(x).tickFormat(d3.format("d")).ticks(years.length))
+    .selectAll("text")
+    .attr("transform", "rotate(45)")
+    .style("text-anchor", "start");
+
+  svg
+    .append("text")
+    .attr("x", width / 2)
+    .attr("y", height - 20)
+    .attr("text-anchor", "middle")
+    .style("font-size", "14px")
+    .text("Year")
+    .style("fill", "white");
+
+  svg
+    .append("g")
+    .attr("transform", `translate(${margin.left}, 0)`)
+    .call(d3.axisLeft(y));
+
+  svg
+    .append("text")
+    .attr("transform", "rotate(-90)")
+    .attr("x", -height / 2)
+    .attr("y", margin.left - 60)
+    .attr("text-anchor", "middle")
+    .style("font-size", "14px")
+    .text(`Total Value (${selectedUnit})`)
+    .style("fill", "white");
+
+  // Ajouter la légende
+  const legend = svg
+    .append("g")
+    .attr(
+      "transform",
+      `translate(${width - margin.right - 400}, ${margin.top - 160})`
+    );
+
+  variables.forEach((variable, i) => {
+    const row = legend.append("g").attr("transform", `translate(0, ${i * 20})`);
+    row
+      .append("rect")
+      .attr("width", 15)
+      .attr("height", 15)
+      .attr("fill", color(variable));
+    row
+      .append("text")
+      .attr("x", 20)
+      .attr("y", 10)
+      .text(variable)
+      .style("font-size", "12px")
+      .style("fill", "white");
+  });
+
+  // Ajouter un tooltip
+  const tooltip = d3
+    .select("body")
+    .append("div")
+    .style("position", "absolute")
+    .style("background", "#fff")
+    .style("color", "black")
+    .style("padding", "5px")
+    .style("border", "1px solid #ccc")
+    .style("border-radius", "4px")
+    .style("box-shadow", "0px 0px 5px rgba(0,0,0,0.3)")
+    .style("pointer-events", "none")
+    .style("opacity", 0);
+
+  // Tracer les lignes
+  const line = d3
+    .line()
+    .x((d) => x(d.year))
+    .y((d) => y(d.value));
+
+  variables.forEach((variable) => {
+    const dataPoints = groupedData
+      .map((d) => ({
+        year: d.year,
+        value: (
+          d.values.find((v) => v.variable === variable) || { value: null }
+        ).value,
+      }))
+      .filter((d) => d.value !== null);
+
+    if (dataPoints.length > 0) {
+      svg
+        .append("path")
+        .datum(dataPoints)
+        .attr("fill", "none")
+        .attr("stroke", color(variable))
+        .attr("stroke-width", 2)
+        .attr("d", line);
+
+      // Ajouter des points interactifs
+      svg
+        .selectAll(`.dot-${variable.replace(/[^a-zA-Z0-9]/g, "-")}`)
+        .data(dataPoints)
+        .enter()
+        .append("circle")
+        .attr("class", "dot")
+        .attr("cx", (d) => x(d.year))
+        .attr("cy", (d) => y(d.value))
+        .attr("r", 5)
+        .attr("fill", color(variable))
+        .style("cursor", "pointer")
+        .on("mouseover", (event, d) => {
+          tooltip
+            .style("opacity", 1)
+            .html(
+              `Country: <b>${selectedCountry}</b><br>
+                   Year: <b>${d.year}</b><br>
+                   Value: <b>${d3.format(".2f")(d.value)} ${selectedUnit}</b>`
+            )
+            .style("left", `${event.pageX + 10}px`)
+            .style("top", `${event.pageY - 20}px`);
+        })
+        .on("mousemove", (event) => {
+          tooltip
+            .style("left", `${event.pageX + 10}px`)
+            .style("top", `${event.pageY - 20}px`);
+        })
+        .on("mouseout", () => {
+          tooltip.style("opacity", 0);
+        });
+    }
+  });
+
+  return svg.node();
+}
+```
+
+<!-- top10BarChart -->
+
+```js
+function top10BarChart(selectedVariable, selectedYear, containerWidth) {
+  const width = containerWidth || 650,
+    height = 700,
+    margin = { top: 150, right: 30, bottom: 100, left: 120 };
+
+  // Filtrer les données
+  let filteredData = waterData.filter(
+    (d) => d.Variable === selectedVariable && +d.Year === selectedYear
+  );
+
+  // Trouver l'unité associée à la variable sélectionnée
+  let unit = filteredData.length > 0 ? filteredData[0].Unit : "Unknown Unit";
+
+  // Grouper par région et calculer la somme des valeurs
+  let aggregatedData = d3.rollups(
+    filteredData,
+    (v) => d3.sum(v, (d) => +d.Value),
+    (d) => d.Area
+  );
+
+  // Trier et garder les 10 premières valeurs
+  let topRegionsData = aggregatedData.sort((a, b) => b[1] - a[1]).slice(0, 10);
+
+  // Sélectionner les régions et valeurs
+  const regions = topRegionsData.map((d) => d[0]);
+  const values = topRegionsData.map((d) => d[1]);
+
+  // Définir les échelles des axes
+  const x = d3
+    .scaleLinear()
+    .domain([0, d3.max(values) || 1])
+    .nice()
+    .range([margin.left, width - margin.right]);
+
+  const y = d3
+    .scaleBand()
+    .domain(regions)
+    .range([margin.top, height - margin.bottom])
+    .padding(0.3);
+
+  // Créer le SVG
+  const svg = d3.create("svg").attr("width", width).attr("height", height);
+
+  svg
+    .append("text")
+    .attr("x", width / 2 + 30)
+    .attr("y", 100)
+    .attr("text-anchor", "middle")
+    .style("font-size", "18px")
+    .style("fill", "white")
+    .style("font-weight", "bold")
+    .text(`Top 10 countries for ${selectedVariable} in ${selectedYear}`);
+
+  // Ajouter les axes
+  svg
+    .append("g")
+    .attr("transform", `translate(0, ${height - margin.bottom})`)
+    .call(d3.axisBottom(x))
+    .selectAll("text")
+    .style("text-anchor", "middle");
+
+  svg
+    .append("text")
+    .attr("x", width / 2)
+    .attr("y", height - 50)
+    .attr("text-anchor", "middle")
+    .style("font-size", "14px")
+    .text(`Total Value (${unit})`)
+    .style("fill", "white");
+
+  svg
+    .append("g")
+    .attr("transform", `translate(${margin.left}, 0)`)
+    .call(d3.axisLeft(y));
+
+  // Position du titre de l'axe Y
+  svg
+    .append("text")
+    .attr("transform", "rotate(-90)")
+    .attr("x", -height / 2)
+    .attr("y", margin.left - 100)
+    .attr("text-anchor", "middle")
+    .style("font-size", "14px")
+    .text("Country")
+    .style("fill", "white");
+
+  // Ajouter les barres
+  svg
+    .selectAll(".bar")
+    .data(topRegionsData)
+    .enter()
+    .append("rect")
+    .attr("class", "bar")
+    .attr("x", margin.left)
+    .attr("y", (d) => y(d[0]))
+    .attr("width", (d) => x(d[1]) - margin.left)
+    .attr("height", y.bandwidth())
+    .attr("fill", d3.scaleOrdinal(d3.schemeCategory10).domain(topRegionsData));
+
+  // Ajouter les labels des valeurs sur les barres
+  svg
+    .selectAll(".label")
+    .data(topRegionsData)
+    .enter()
+    .append("text")
+    .attr("x", (d) => x(d[1]) + 5)
+    .attr("y", (d) => y(d[0]) + y.bandwidth() / 2)
+    .attr("dy", "0.35em")
+    .text((d) => d3.format(".2f")(d[1]))
+    .style("fill", "white");
+
+  return svg.node();
+}
+```
+
+<!-- variableSelector -->
+
+```js
+const variableSelector = view(
+  Inputs.select([...new Set(waterData.map((d) => d.Variable))].sort(), {
+    label: "Select Variable for Top 5",
+    value: "Agricultural water withdrawal",
+    width: "100%",
+  })
+);
+```
+
+```js
+const worldData = await d3.json(
+  "https://raw.githubusercontent.com/datasets/geo-countries/master/data/countries.geojson"
+);
+
+function createWorldMap(
+  selectedYear,
+  selectedSubgroup,
+  selectedUnit,
+  excludeEFR,
+  containerWidth
+) {
+  const width = containerWidth,
+    height = 600;
+  const svg = d3
+    .create("svg")
+    .attr("width", width)
+    .attr("height", height)
+    .style("border", "1px solid #ccc")
+    .style("background-color", "#000")
+    .style("overflow", "hidden");
+
+  const projection = d3
+    .geoMercator()
+    .scale(250)
+    .translate([width / 2, height / 1.4]);
+
+  const path = d3.geoPath(projection);
+  const g = svg.append("g");
+
+  g.selectAll("path")
+    .data(worldData.features)
+    .join("path")
+    .attr("d", path)
+    .attr("fill", "#333")
+    .attr("stroke", "#fff")
+    .attr("stroke-width", 0.5);
+
+  // Ajouter un Tooltip avec le nom du pays
+  const tooltip = d3
+    .select("body")
+    .append("div")
+    .style("position", "absolute")
+    .style("background", "rgba(255,255,255,0.9)")
+    .style("border", "1px solid #ccc")
+    .style("padding", "8px")
+    .style("border-radius", "4px")
+    .style("pointer-events", "none")
+    .style("font-size", "12px")
+    .style("display", "none");
+
+  // Filtrer les données
+  let filteredData = waterData.filter(
+    (d) =>
+      +d.Year === selectedYear &&
+      d.Subgroup === selectedSubgroup &&
+      d.Unit === selectedUnit
+  );
+
+  // Exclure "Environmental Flow Requirements" si demandé
+  if (excludeEFR) {
+    filteredData = filteredData.filter(
+      (d) => d.Variable !== "Environmental Flow Requirements"
+    );
+  }
+
+  const data = Object.create(null);
+  for (const row of filteredData) {
+    if (!data[row.Area]) {
+      data[row.Area] = [];
+    }
+    data[row.Area].push({ name: row.Variable, value: +row.Value });
+  }
+
+  // Calculer la surface des pays et ajouter le nom
+  const countryAreas = worldData.features
+    .map((d) => ({
+      id: d.id,
+      name: d.properties.ADMIN,
+      centroid: projection(d3.geoCentroid(d)),
+      area: path.area(d),
+    }))
+    .filter((d) => d.centroid && data[d.name]);
+
+  countryAreas.forEach((d) => {
+    if (d.name === "France") {
+      d.centroid = projection([2.2137, 46.6034]); // Longitude et latitude approximatives de la France
+    }
+  });
+
+  // Échelle de taille proportionnelle à la surface du pays
+  const minArea = d3.min(countryAreas, (d) => d.area);
+  const maxArea = d3.max(countryAreas, (d) => d.area);
+
+  // Taille limitée en fonction de la grandeur du pays
+  const sizeScale = d3.scaleSqrt().domain([minArea, maxArea]).range([5, 40]);
+
+  const pie = d3.pie().value((d) => d.value);
+  const colorScale = d3.scaleOrdinal(d3.schemeCategory10);
+
+  // Créer les pie charts en fonction de la taille du pays
+  const pieGroups = g
+    .selectAll(".pie")
+    .data(countryAreas)
+    .enter()
+    .append("g")
+    .attr("class", "pie")
+    .attr("transform", (d) => `translate(${d.centroid[0]}, ${d.centroid[1]})`);
+
+  pieGroups.each(function (d) {
+    const pieData = data[d.name] || [{ name: "No data", value: 1 }];
+    const arc = d3.arc().innerRadius(0).outerRadius(sizeScale(d.area));
+
+    d3.select(this)
+      .selectAll("path")
+      .data(pie(pieData))
+      .join("path")
+      .attr("d", arc)
+      .attr("fill", (d) => colorScale(d.data.name))
+      .attr("stroke", "#000")
+      .attr("stroke-width", 0.5)
+      .on("mouseover", function (event, d) {
+        d3.select(this)
+          .transition()
+          .duration(200)
+          .attr("transform", "scale(1.1)");
+        tooltip
+          .style("display", "block")
+          .html(
+            `<strong style="color: black;">Country: ${this.parentNode.__data__.name}</strong><br>
+                   <strong style="color: black;">${d.data.name}</strong><br>
+                   <span style="color: black;">Value: ${d.data.value}</span>`
+          )
+          .style("left", `${event.pageX + 10}px`)
+          .style("top", `${event.pageY + 10}px`);
+      })
+      .on("mousemove", function (event) {
+        tooltip
+          .style("left", `${event.pageX + 10}px`)
+          .style("top", `${event.pageY + 10}px`);
+      })
+      .on("mouseout", function () {
+        d3.select(this)
+          .transition()
+          .duration(200)
+          .attr("transform", "scale(1)");
+        tooltip.style("display", "none");
+      });
+  });
+
+  // Zoom dynamique avec limitation du volume des pie charts
+  const zoomBehavior = d3
+    .zoom()
+    .scaleExtent([1, 8])
+    .on("zoom", (event) => {
+      g.attr("transform", event.transform);
+
+      const newScale = event.transform.k;
+      pieGroups.each(function (d) {
+        let adjustedSize = sizeScale(d.area) / newScale;
+
+        adjustedSize = Math.max(5, Math.min(adjustedSize, sizeScale(d.area)));
+
+        const arc = d3.arc().innerRadius(0).outerRadius(adjustedSize);
+        d3.select(this).selectAll("path").attr("d", arc);
+      });
+    });
+
+  svg.call(zoomBehavior);
+
+  return svg.node();
+}
+```
+
+<div class="grid grid-cols-4">
+  <div class="card">
+    <h2>Selected Country</h2>
+    <span class="big">${countrySelector}</span>
+  </div>
+  <div class="card">
+    <h2>Selected Subgroup</h2>
+    <span class="big">${subgroupeSelector}</span>
+  </div>
+  <div class="card">
+    <h2>Selected Unit</h2>
+    <span class="big">${unitSelector}</span>
+  </div>
+  <div class="card">
+    <h2>Exclude Environmental Variable</h2>
+    <span class="big">${excludeEnvFlow}</span>
+  </div>
+</div>
+
+<div class="grid grid-cols-2" style = "width: 100%">
+  <div class="card" >
+    ${resize((width) => waterLineChart(countrySelector, subgroupeSelector, unitSelector, excludeEnvFlow, width))}
+  </div>
+  <div class="card">
+    ${resize((width) => top10BarChart(variableSelector, selectedYear, width))}
+  </div>
+</div>
+<div class="grid grid-cols-1">
+  <div class="card">
+    <!-- <div style="font-size: 24px; font-weight: bold; color: white; margin-left: 100; margin-top:100; margin-bottom:20; display: block;">World Map distribution for ${subgroupeSelector} in ${selectedYear}</div> -->
+    ${resize((width) => createWorldMap(selectedYear, subgroupeSelector, unitSelector, excludeEnvFlow, width))}  
+  </div>
+</div>
diff --git a/src/data/cleaned_waterplease_final.csv b/src/data/cleaned_waterplease_final.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a1db2886fc45554c5d91d96645555b299ae198e4
--- /dev/null
+++ b/src/data/cleaned_waterplease_final.csv
@@ -0,0 +1,31133 @@
+VariableGroup,Subgroup,Variable,Area,Year,Value,Unit,Symbol,IsAggregate
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2010,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2011,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2012,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2013,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2014,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2015,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2016,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2017,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2018,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2019,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2020,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Afghanistan,2021,20.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2010,0.572,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2011,0.5856,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2012,0.5992,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2013,0.6128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2014,0.6264,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2015,0.64,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2016,0.638,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2017,0.699,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2018,0.653,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2019,0.692,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2020,0.545,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Albania,2021,0.564,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2010,4.719454545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2011,4.854727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2012,4.99,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2013,5.397333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2014,5.804666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2015,6.212,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2016,6.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2017,6.671,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2018,6.671,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2019,6.671,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2020,6.671,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Algeria,2021,6.671,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2010,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2011,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2012,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2013,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2014,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2015,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2016,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2017,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2018,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2019,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2020,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Angola,2021,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2010,0.001657143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2011,0.001728571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2012,0.0018,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2013,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2014,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2015,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2016,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2017,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2018,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2019,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2020,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Antigua and Barbuda,2021,0.0018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2010,27.347272727,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2011,27.93,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2012,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2013,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2014,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2015,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2016,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2017,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2018,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2019,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2020,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Argentina,2021,27.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2010,1.153,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2011,1.645,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2012,2.108,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2013,2.29,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2014,2.142,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2015,2.673,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2016,2.544,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2017,2.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2018,1.882,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2019,2.134,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2020,1.99,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Armenia,2021,2.256,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2010,7.359,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2011,7.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2012,9.587,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2013,12.97,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2014,11.81,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2015,9.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2016,11.15,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2017,12.090772,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2018,12.62772688,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2019,10.45,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2020,8.48,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Australia,2021,11.22,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2010,0.0771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2011,0.082311111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2012,0.087522222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2013,0.092733333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2014,0.097944444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2015,0.103155556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2016,0.108366667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2017,0.113577778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2018,0.118788889,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2019,0.124,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2020,0.124,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Austria,2021,0.124,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2010,10.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2011,10.287,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2012,10.849,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2013,10.859,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2014,10.418,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2015,10.654,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2016,10.82,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2017,11.161,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2018,11.237,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2019,11.614,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2020,11.207,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Azerbaijan,2021,11.962,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2010,0.144309091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2011,0.142181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2012,0.140054545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2013,0.137927273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2014,0.1358,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2015,0.1381,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2016,0.1447,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2017,0.1447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2018,0.1447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2019,0.1447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2020,0.1447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bahrain,2021,0.1447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2010,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2011,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2012,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2013,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2014,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2015,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2016,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2017,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2018,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2019,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2020,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bangladesh,2021,31.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2010,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2011,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2012,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2013,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2014,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2015,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2016,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2017,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2018,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2019,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2020,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Barbados,2021,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2010,0.471,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2011,0.477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2012,0.483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2013,0.489,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2014,0.518,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2015,0.434,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2016,0.428,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2017,0.431,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2018,0.416,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2019,0.367,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2020,0.367,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belarus,2021,0.396,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2010,0.038666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2011,0.037333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2012,0.036,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2013,0.039,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2014,0.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2015,0.045,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2016,0.045361663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2017,0.045723326,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2018,0.05432388,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2019,0.0545,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2020,0.0512,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belgium,2021,0.0512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2010,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2011,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2012,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2013,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2014,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2015,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2016,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2017,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2018,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2019,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2020,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Belize,2021,0.0684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2010,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2011,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2012,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2013,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2014,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2015,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2016,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2017,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2018,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2019,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2020,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Benin,2021,0.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2010,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2011,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2012,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2013,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2014,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2015,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2016,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2017,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2018,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2019,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2020,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bhutan,2021,0.318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2010,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2011,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2012,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2013,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2014,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2015,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2016,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2017,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2018,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2019,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2020,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bolivia,2021,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2010,0.074818182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2011,0.0743,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2012,0.0743,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2013,0.07015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2014,0.066,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2015,0.0682,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2016,0.081,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2017,0.069,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2018,0.0796,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2019,0.07459,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2020,0.0814696,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Botswana,2021,0.0779995,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2010,44.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2011,42.4925,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2012,40.085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2013,37.6775,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2014,35.27,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2015,34.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2016,40.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2017,39.43,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2018,38.81,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2019,42.54,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2020,41.42,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brazil,2021,41.27,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2010,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2011,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2012,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2013,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2014,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2015,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2016,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2017,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2018,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2019,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2020,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Brunei,2021,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2010,0.9393,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2011,1.05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2012,0.9494,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2013,0.825,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2014,0.7266,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2015,0.8288,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2016,0.907543,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2017,0.835,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2018,0.724,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2019,0.621,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2020,0.651,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Bulgaria,2021,0.651,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2010,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2011,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2012,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2013,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2014,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2015,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2016,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2017,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2018,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2019,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2020,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burkina Faso,2021,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2010,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2011,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2012,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2013,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2014,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2015,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2016,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2017,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2018,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2019,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2020,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Burundi,2021,0.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2010,0.050809592,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2011,0.055111191,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2012,0.059412789,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2013,0.063714388,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2014,0.068015987,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2015,0.072317585,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2016,0.076619184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2017,0.080920783,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2018,0.085222381,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2019,0.08952398,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2020,0.11320075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cape Verde,2021,0.10926951,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2010,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2011,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2012,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2013,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2014,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2015,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2016,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2017,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2018,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2019,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2020,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cambodia,2021,2.053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2010,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2011,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2012,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2013,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2014,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2015,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2016,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2017,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2018,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2019,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2020,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cameroon,2021,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2010,4.749,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2011,4.327,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2012,3.905,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2013,3.483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2014,3.061,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2015,2.639,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2016,3.249,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2017,3.859,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2018,3.859,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2019,3.859,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2020,3.859,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Canada,2021,3.859,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2010,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2011,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2012,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2013,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2014,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2015,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2016,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2017,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2018,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2019,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2020,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Central African Republic,2021,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2010,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2011,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2012,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2013,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2014,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2015,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2016,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2017,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2018,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2019,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2020,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chad,2021,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2010,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2011,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2012,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2013,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2014,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2015,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2016,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2017,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2018,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2019,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2020,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Chile,2021,29.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2010,368.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2011,374.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2012,388.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2013,392.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2014,386.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2015,385.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2016,376.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2017,376.64,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2018,369.31,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2019,368.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2020,361.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,China,2021,361.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2010,10.04325,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2011,11.869375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2012,13.6955,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2013,15.521625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2014,17.34775,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2015,19.173875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2016,21.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2017,22.082508794,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2018,23.165017588,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2019,21.73656299,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2020,22.34508286,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Colombia,2021,23.01123105,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2010,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2011,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2012,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2013,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2014,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2015,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2016,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2017,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2018,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2019,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2020,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Comoros,2021,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2010,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2011,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2012,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2013,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2014,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2015,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2016,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2017,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2018,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2019,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2020,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Republic of Congo,2021,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2012,1.673,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2013,1.731,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2014,1.937,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2015,2.302,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2016,2.151,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2017,2.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2018,2.095646432,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2019,2.07043784,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2020,2.075019024,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Costa Rica,2021,2.092895183,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2010,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2011,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2012,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2013,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2014,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2015,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2016,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2017,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2018,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2019,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2020,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Croatia,2021,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2010,3.569,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2011,3.885666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2012,4.202333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2013,4.519,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2014,4.519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2015,4.519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2016,4.519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2017,4.519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2018,4.519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2019,4.519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2020,4.519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cuba,2021,4.519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2010,0.1494,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2011,0.1646,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2012,0.171,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2013,0.1676,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2014,0.176,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2015,0.195,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2016,0.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2017,0.186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2018,0.175,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2019,0.166,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2020,0.172,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Cyprus,2021,0.18,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2010,0.0368,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2011,0.039,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2012,0.0432,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2013,0.044,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2014,0.0485,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2015,0.0542,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2016,0.0475,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2017,0.0466,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2018,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2019,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2020,0.039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Czech Republic,2021,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2010,0.596866667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2011,0.59765,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2012,0.598433333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2013,0.599216667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2014,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2015,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2016,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2017,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2018,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2019,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2020,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ivory Coast,2021,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2010,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2011,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2012,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2013,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2014,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2015,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2016,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2017,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2018,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2019,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2020,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,North Korea,2021,6.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2010,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2011,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2012,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2013,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2014,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2015,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2016,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2017,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2018,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2019,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2020,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Democratic Republic of the Congo,2021,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2010,0.2414,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2011,0.2441,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2012,0.1863,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2013,0.3326,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2014,0.3533,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2015,0.3876,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2016,0.461847,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2017,0.47773,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2018,0.659339,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2019,0.506609,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2020,0.527336,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Denmark,2021,0.527336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2010,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2011,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2012,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2013,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2014,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2015,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2016,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Djibouti,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2010,0.001,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2011,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2012,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2013,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2014,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2015,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2016,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2017,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2018,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2019,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2020,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominica,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2010,5.715,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2011,6.0846,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2012,6.4542,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2013,6.8238,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2014,7.1934,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2015,7.563,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2016,7.563,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2017,7.563,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2018,7.563,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2019,7.563,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2020,7.563,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Dominican Republic,2021,7.563,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2010,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2011,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2012,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2013,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2014,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2015,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2016,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2017,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2018,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2019,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2020,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ecuador,2021,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2010,67.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2011,60.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2012,61.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2013,62.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2014,62.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2015,62.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2016,62.15,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2017,61.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2018,61.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2019,61.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2020,61.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Egypt,2021,61.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2010,1.073930044,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2011,1.002516053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2012,0.931102062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2013,0.85968807,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2014,0.788274079,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2015,0.716860088,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2016,0.645446097,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2017,0.574032106,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2018,0.502618114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2019,0.431204123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2020,0.359790132,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,El Salvador,2021,0.518524037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2010,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2011,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2012,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2013,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2014,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2015,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2016,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2017,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2018,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2019,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2020,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Equatorial Guinea,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2010,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2011,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2012,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2013,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2014,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2015,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2016,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2017,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2018,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2019,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2020,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eritrea,2021,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2010,0.00416062,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2011,0.00431506,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2012,0.00443596,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2013,0.00480823,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2014,0.00503692,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2015,0.00483416,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2016,0.00442967,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2017,0.00446615,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2018,0.00473857,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2019,0.00486,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2020,0.004856759,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Estonia,2021,0.004971369,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2010,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2011,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2012,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2013,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2014,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2015,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2016,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2017,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2018,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2019,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2020,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Eswatini,2021,1.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2010,8.221363636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2011,8.465636364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2012,8.709909091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2013,8.954181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2014,9.198454546,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2015,9.442727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2016,9.687,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2017,9.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2018,9.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2019,9.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2020,9.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ethiopia,2021,9.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2010,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2011,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2012,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2013,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2014,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2015,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2016,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2017,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2018,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2019,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2020,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Fiji,2021,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2010,0.209090909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2011,0.240909091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2012,0.272727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2013,0.304545454,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2014,0.336363636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2015,0.368181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2016,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2017,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2018,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2019,1.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2020,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Finland,2021,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2010,3.033,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2011,3.036,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2012,2.913,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2013,2.776,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2014,2.114,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2015,3.213,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2016,3.113,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2017,2.943,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2018,2.986824097,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2019,3.183303704,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2020,3.44030212,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,France,2021,3.44030212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2010,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2011,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2012,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2013,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2014,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2015,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2016,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2017,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2018,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2019,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2020,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gabon,2021,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2010,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2011,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2012,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2013,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2014,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2015,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2016,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2017,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2018,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2019,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2020,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Gambia,2021,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2010,0.907451813,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2011,0.830768178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2012,0.754084542,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2013,0.677400907,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2014,0.600717271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2015,0.524033636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2016,0.44735,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2017,0.48645,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2018,0.45784,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2019,0.591,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2020,0.70787,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Georgia,2021,0.74988,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2010,0.690341,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2011,0.796728,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2012,0.851068,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2013,0.827708,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2014,0.861661,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2015,0.958338,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2016,0.904598,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2017,0.921602,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2018,1.15807,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2019,1.074671,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2020,1.074671,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Germany,2021,1.074671,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2010,0.91325,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2011,0.939375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2012,0.9655,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2013,0.991625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2014,1.01775,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2015,1.043875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2016,1.07,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2017,1.07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2018,1.07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2019,1.07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2020,1.07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ghana,2021,1.07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2010,8.32675,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2011,8.283,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2012,8.283,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2013,8.283,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2014,8.283,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2015,8.283,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2016,8.107,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2017,8.107,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2018,8.107,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2019,8.107,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2020,8.107,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Greece,2021,8.107,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2010,0.002123529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2011,0.002117647,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2012,0.002111765,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2013,0.002105882,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2014,0.0021,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2015,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2016,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2017,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2018,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2019,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2020,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Grenada,2021,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2010,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2011,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2012,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2013,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2014,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2015,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2016,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2017,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2018,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2019,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2020,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guatemala,2021,1.886,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2010,0.455482353,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2011,0.473547059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2012,0.491611765,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2013,0.509676471,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2014,0.527741176,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2015,0.545805882,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2016,0.563870588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2017,0.581935294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2018,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2019,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2020,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea,2021,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2010,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2011,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2012,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2013,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2014,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2015,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2016,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2017,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2018,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2019,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2020,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guinea Bissau,2021,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2010,1.363,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2011,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2012,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2013,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2014,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2015,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2016,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2017,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2018,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2019,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2020,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Guyana,2021,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2010,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2011,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2012,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2013,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2014,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2015,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2016,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2017,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2018,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2019,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2020,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Haiti,2021,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2010,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2011,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2012,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2013,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2014,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2015,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2016,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2017,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2018,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2019,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2020,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Honduras,2021,1.178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2010,0.316466667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2011,0.319233333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2012,0.322,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2013,0.3973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2014,0.4726,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2015,0.5479,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2016,0.4347,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2017,0.495195567,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2018,0.504939785,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2019,0.485849743,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2020,0.5477,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Hungary,2021,0.5477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2010,0.0003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2011,0.0003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2012,0.0003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2013,0.0002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2014,0.0002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2015,0.0003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2016,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2017,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2018,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2019,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2020,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iceland,2021,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2010,688.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2011,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2012,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2013,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2014,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2015,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2016,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2017,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2018,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2019,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2020,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,India,2021,688.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2010,158.288571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2011,164.841428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2012,171.394285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2013,177.947142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2014,184.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2015,187.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2016,189.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2017,189.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2018,189.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2019,189.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2020,189.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Indonesia,2021,189.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2010,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2011,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2012,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2013,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2014,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2015,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2016,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2017,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2018,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2019,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2020,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iran,2021,86.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2010,41.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2011,39.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2012,38.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2013,37.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2014,36.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2015,31.95,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2016,35.27,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2017,37.82,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2018,30.71,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2019,44.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2020,32.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Iraq,2021,31.169,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2010,0.0826,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2011,0.076575,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2012,0.07055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2013,0.064525,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2014,0.0585,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2015,0.052475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2016,0.04645,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2017,0.040425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2018,0.0344,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2019,0.0353,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2020,0.0379,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ireland,2021,0.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2010,1.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2011,1.1036,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2012,1.1072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2013,1.1108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2014,1.1144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2015,1.118,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2016,1.253,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2017,1.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2018,1.173,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2019,1.191,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2020,1.195,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Israel,2021,1.268,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2010,14.945,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2011,15.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2012,16.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2013,17.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2014,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2015,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2016,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2017,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2018,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2019,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2020,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Italy,2021,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2010,0.381142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2011,0.358857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2012,0.336571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2013,0.314285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2014,0.292,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2015,0.135,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2016,0.114,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2017,0.113663112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2018,0.113326224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2019,0.112989336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2020,0.112652448,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jamaica,2021,0.078971645,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2010,54.34,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2011,54.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2012,54.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2013,54.07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2014,53.98,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2015,53.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2016,53.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2017,53.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2018,53.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2019,53.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2020,53.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Japan,2021,53.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2010,0.501,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2011,0.5119,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2012,0.462,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2013,0.481,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2014,0.5466,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2015,0.514,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2016,0.5547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2017,0.5518,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2018,0.5624,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2019,0.57061,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2020,0.57061,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Jordan,2021,0.57061,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2010,14.08,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2011,13.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2012,12.49,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2013,13.69,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2014,13.34,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2015,13.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2016,14.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2017,15.12,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2018,14.968,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2019,15.79,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2020,15.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kazakhstan,2021,15.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2010,1.907,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2011,1.907237042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2012,1.907474083,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2013,1.907711125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2014,1.907948167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2015,1.908185208,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2016,3.234,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2017,3.234,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2018,3.234,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2019,3.234,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2020,3.234,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kenya,2021,3.234,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2010,0.612330769,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2011,0.627384615,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2012,0.642438461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2013,0.657492308,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2014,0.672546154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2015,0.6876,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2016,0.7226,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2017,0.7784,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2018,0.7784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2019,0.7784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2020,0.7784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kuwait,2021,0.7784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2010,7.1694,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2011,7.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2012,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2013,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2014,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2015,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2016,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2017,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2018,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2019,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2020,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Kyrgyzstan,2021,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2010,5.458,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2011,5.911,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2012,6.364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2013,6.817,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2014,7.27,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2015,7.55,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2016,7.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2017,7.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2018,7.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2019,7.05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2020,7.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Laos,2021,7.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2010,0.04472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2011,0.04276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2012,0.0408,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2013,0.0363,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2014,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2015,0.0491,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2016,0.0581,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2017,0.054806757,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2018,0.054874,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2019,0.053136,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2020,0.055326,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Latvia,2021,0.055326,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2010,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2011,0.732,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2012,0.724,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2013,0.716,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2014,0.708,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2015,0.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2016,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2017,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2018,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2019,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2020,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lebanon,2021,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2010,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2011,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2012,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2013,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2014,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2015,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2016,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2017,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2018,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2019,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2020,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lesotho,2021,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2010,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2011,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2012,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2013,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2014,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2015,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2016,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2017,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2018,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2019,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2020,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Liberia,2021,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2010,4.616818308,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2011,4.733409154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2012,4.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2013,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2014,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2015,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2016,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2017,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2018,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2019,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2020,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Libya,2021,4.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2010,0.07415,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2011,0.069,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2012,0.06385,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2013,0.0587,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2014,0.0579,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2015,0.0614,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2016,0.0593,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2017,0.0589,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2018,0.05714,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2019,0.05714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2020,0.05714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Lithuania,2021,0.05714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2010,0.0001,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2011,0.0005,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2012,0.0002,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2013,0.0003,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2014,0.0003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2015,0.0007,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2016,0.0003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2017,0.0004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2018,0.0005,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2019,0.0006,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Luxembourg,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2010,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2011,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2012,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2013,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2014,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2015,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2016,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2017,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2018,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2019,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2020,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Madagascar,2021,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2010,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2011,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2012,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2013,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2014,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2015,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2016,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2017,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2018,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2019,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2020,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malawi,2021,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2010,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2011,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2012,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2013,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2014,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2015,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2016,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2017,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2018,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2019,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2020,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malaysia,2021,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2010,1.6108e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2011,2.4161e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2012,3.2215e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2013,4.0269e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2014,4.8322e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2015,5.6376e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2016,6.443e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2017,7.2484e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2018,8.0537e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2019,8.8591e-05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2020,0.000178393,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Maldives,2021,0.000268194,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2010,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2011,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2012,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2013,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2014,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2015,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2016,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2017,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2018,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2019,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2020,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mali,2021,5.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2010,0.019033333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2011,0.021566667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2012,0.0241,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2013,0.029,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2014,0.0283,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2015,0.0254,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2016,0.0255,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2017,0.028,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2018,0.02532979,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2019,0.022950211,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2020,0.023962278,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Malta,2021,0.022539482,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2010,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2011,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2012,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2013,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2014,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2015,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2016,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2017,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2018,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2019,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2020,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritania,2021,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2010,0.404,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2011,0.356,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2012,0.365,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2013,0.375,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2014,0.373,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2015,0.343,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2016,0.357,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2017,0.344,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2018,0.304,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2019,0.301,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2020,0.305,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mauritius,2021,0.301,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2010,61.69,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2011,61.58,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2012,63.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2013,61.82,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2014,65.16,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2015,65.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2016,66.05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2017,66.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2018,67.264,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2019,67.646,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2020,67.823,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mexico,2021,68.069,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Monaco,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2010,0.245783333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2011,0.249566667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2012,0.25335,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2013,0.257133333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2014,0.260916667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2015,0.2647,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2016,0.2509,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2017,0.2509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2018,0.2509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2019,0.2509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2020,0.2509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mongolia,2021,0.2509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2010,0.0017,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2011,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2012,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2013,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2014,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2015,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2016,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2017,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2018,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2019,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2020,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Montenegro,2021,0.0017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2010,9.156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2011,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2012,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2013,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2014,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2015,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2016,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2017,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2018,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2019,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2020,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Morocco,2021,9.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2010,0.938142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2011,0.965714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2012,0.993285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2013,1.020857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2014,1.048428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2015,1.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2016,1.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2017,1.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2018,1.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2019,1.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2020,1.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Mozambique,2021,1.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2010,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2011,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2012,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2013,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2014,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2015,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2016,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2017,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2018,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2019,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2020,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Myanmar,2021,29.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2010,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2011,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2012,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2013,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2014,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2015,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2016,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2017,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2018,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2019,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2020,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Namibia,2021,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2010,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2011,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2012,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2013,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2014,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2015,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2016,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2017,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2018,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2019,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2020,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nepal,2021,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2010,0.122,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2011,0.1194,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2012,0.0602,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2013,0.1069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2014,0.0827,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2015,0.1059,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2016,0.0765,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2017,0.1197,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2018,0.3021,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2019,0.2534,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2020,0.3072,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Netherlands,2021,0.0838,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2010,3.207,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2011,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2012,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2013,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2014,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2015,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2016,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2017,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2018,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2019,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2020,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,New Zealand,2021,3.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2010,1.1845,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2011,1.185,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2012,1.172375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2013,1.15975,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2014,1.147125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2015,1.1345,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2016,1.121875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2017,1.10925,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2018,1.096625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2019,1.084,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2020,1.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nicaragua,2021,1.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2010,1.027333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2011,1.1015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2012,1.175666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2013,1.249833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2014,1.324,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2015,1.524,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2016,1.536,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2017,1.366407,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2018,2.209407,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2019,2.351407,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2020,2.351407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Niger,2021,2.351407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2010,5.51,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2011,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2012,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2013,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2014,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2015,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2016,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2017,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2018,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2019,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2020,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Nigeria,2021,5.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2010,0.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2011,0.293,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2012,1.353,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2013,0.156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2014,0.2093,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2015,0.139,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2016,0.197809804,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2017,0.256619608,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2018,0.315429412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2019,0.374239216,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2020,0.43304902,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Macedonia,2021,0.491858823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2010,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2011,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2012,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2013,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2014,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2015,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2016,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2017,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2018,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2019,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2020,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Norway,2021,0.8449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2010,1.4753,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2011,1.5192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2012,1.5631,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2013,1.607,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2014,1.577,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2015,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2016,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2017,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2018,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2019,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2020,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Oman,2021,1.547,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2010,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2011,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2012,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2013,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2014,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2015,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2016,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2017,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2018,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2019,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2020,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Pakistan,2021,172.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2010,0.149707895,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2011,0.146452392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2012,0.157891866,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2013,0.165352392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2014,0.154952871,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2015,0.165171531,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2016,0.164402871,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2017,0.162,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2018,0.1755,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2019,0.1906,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2020,0.2158,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Palestine,2021,0.2158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2010,0.446,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2011,0.455,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2012,0.464,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2013,0.473,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2014,0.4656,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2015,0.4471,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2016,0.4461,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2017,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2018,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2019,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2020,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Panama,2021,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2010,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2011,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2012,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2013,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2014,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2015,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2016,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2017,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2018,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2019,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2020,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Papua New Guinea,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2010,1.639166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2011,1.768083333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2012,1.897,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2013,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2014,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2015,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2016,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2017,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2018,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2019,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2020,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Paraguay,2021,1.897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2010,16.0982,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2011,18.0873,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2012,20.0764,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2013,22.0655,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2014,24.0546,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2015,26.0437,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2016,28.0328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2017,30.0219,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2018,32.011,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2019,32.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2020,32.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Peru,2021,32.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2010,67.88,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2011,67.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2012,67.91,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2013,67.92,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2014,67.78,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2015,67.94,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2016,67.94,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2017,67.96160962,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2018,67.96835134,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2019,67.80922484,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2020,67.85109005,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Philippines,2021,67.8483457,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2010,1.153,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2011,1.111,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2012,1.102,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2013,1.079,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2014,1.056,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2015,0.992,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2016,1.053,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2017,1.018,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2018,1.389,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2019,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2020,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Poland,2021,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2010,5.389618947,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2011,5.108170526,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2012,4.826722105,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2013,4.545273684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2014,4.263825263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2015,3.982376842,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2016,3.700928421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2017,3.41948,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2018,3.41948,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2019,3.41948,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2020,3.41948,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Portugal,2021,3.41948,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2010,0.0641,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2011,0.07398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2012,0.08386,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2013,0.09374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2014,0.10362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2015,0.1135,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2016,0.1135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2017,0.1135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2018,0.1135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2019,0.1135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2020,0.1135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Puerto Rico,2021,0.1135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2010,0.2612,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2011,0.2715,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2012,0.2888,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2013,0.2852,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2014,0.2949,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2015,0.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2016,0.2917,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2017,0.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2018,0.309969,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2019,0.316256,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2020,0.3219567,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Qatar,2021,0.311156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2010,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2011,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2012,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2013,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2014,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2015,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2016,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2017,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2018,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2019,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2020,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Korea,2021,15.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2010,0.039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2011,0.039,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2012,0.039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2013,0.038,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2014,0.042,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2015,0.044,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2016,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2017,0.042,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2018,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2019,0.044,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2020,0.055,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Moldova,2021,0.055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2010,0.74,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2011,0.964,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2012,1.093,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2013,1.135,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2014,1.095,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2015,1.291,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2016,1.243,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2017,1.491,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2018,1.427,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2019,1.612,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2020,2.28,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Romania,2021,2.48,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2010,12.422356496,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2011,12.335951662,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2012,12.249546828,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2013,12.163141994,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2014,18.68,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2015,17.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2016,18.19,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2017,18.66,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2018,18.64,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2019,18.64,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2020,18.64,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Russia,2021,18.64,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2010,0.237789474,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2011,0.251368421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2012,0.264947368,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2013,0.278526316,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2014,0.292105263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2015,0.30568421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2016,0.319263158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2017,0.332842105,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2018,0.346421053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2019,0.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2020,0.3605,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Rwanda,2021,0.361,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2010,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2011,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2012,0.0002,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2013,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2014,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2015,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2016,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2017,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2018,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2019,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2020,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Kitts and Nevis,2021,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2010,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2011,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2012,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2013,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2014,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2015,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2016,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2017,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2018,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2019,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2020,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Lucia,2021,0.0304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2010,0.001317391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2011,0.000878261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2012,0.00043913,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2013,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saint Vincent and the Grenadines,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sao Tome and Principe,2016,0.0256,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sao Tome and Principe,2017,0.0256,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sao Tome and Principe,2018,0.0256,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sao Tome and Principe,2019,0.0256,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sao Tome and Principe,2020,0.0256,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sao Tome and Principe,2021,0.0256,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2010,18.616666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2011,18.063333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2012,17.51,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2013,18.64,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2014,19.61,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2015,20.83,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2016,19.79,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2017,19.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2018,21.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2019,21.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2020,21.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Saudi Arabia,2021,21.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2010,2.138954933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2011,2.1481993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2012,2.157443667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2013,2.166688033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2014,2.1759324,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2015,2.185176767,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2016,2.194421133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2017,2.2036655,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2018,2.7586822,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2019,2.7586822,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2020,2.7586822,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Senegal,2021,2.7586822,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2010,0.593,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2011,0.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2012,0.6245,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2013,0.6322,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2014,0.6309,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2015,0.7225,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2016,0.6345,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2017,0.6608,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2018,0.7123,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2019,0.7091,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2020,0.6607,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Serbia,2021,0.633,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2010,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2011,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2012,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2013,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2014,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2015,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2016,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2017,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2018,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2019,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2020,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Seychelles,2021,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2010,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2011,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2012,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2013,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2014,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2015,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2016,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2017,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2018,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2019,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2020,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sierra Leone,2021,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2010,0.0242075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2011,0.024682,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2012,0.0251565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2013,0.025631,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2014,0.0261055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2015,0.02658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2016,0.026584,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2017,0.026376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2018,0.026264,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2019,0.026544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2020,0.0264,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Singapore,2021,0.0264,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2010,0.0178,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2011,0.0236,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2012,0.0307,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2013,0.0258,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2014,0.0229,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2015,0.0305,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2016,0.0208,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2017,0.0316,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2018,0.0256,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2019,0.0292,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2020,0.0295,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovakia,2021,0.0304301,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2010,0.0016,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2011,0.0032,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2012,0.0023,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2013,0.0036,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2014,0.0016,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2015,0.0035,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2016,0.0033,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2017,0.0039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2018,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2019,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2020,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Slovenia,2021,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2010,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2011,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2012,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2013,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2014,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2015,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2016,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2017,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2018,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2019,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2020,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Somalia,2021,3.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2010,9.262153846,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2011,9.404769231,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2012,9.547384615,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2013,9.69,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2014,10.515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2015,11.34,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2016,11.33,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2017,11.39,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2018,11.48,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2019,11.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2020,11.989,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Africa,2021,12.022,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2012,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2013,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2014,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2015,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2016,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2017,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2018,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2019,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2020,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,South Sudan,2021,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2010,23.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2011,23.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2012,25.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2013,21.23,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2014,21.96,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2015,20.72,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2016,20.365,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2017,19.809,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2018,19.194,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2019,19.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2020,18.96,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Spain,2021,18.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2010,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2011,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2012,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2013,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2014,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2015,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2016,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2017,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2018,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2019,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2020,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sri Lanka,2021,11.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2012,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2013,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2014,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2015,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2016,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2017,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2018,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2019,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2020,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sudan,2021,25.91,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2010,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2011,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2012,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2013,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2014,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2015,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2016,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2017,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2018,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2019,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2020,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Suriname,2021,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2010,0.098,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2011,0.0934,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2012,0.0888,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2013,0.0842,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2014,0.0796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2015,0.075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2016,0.0804,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2017,0.0858,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2018,0.0912,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2019,0.0966,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2020,0.102,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Sweden,2021,0.102,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2010,0.14175,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2011,0.150925,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2012,0.1601,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2013,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2014,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2015,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2016,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2017,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2018,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2019,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2020,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Switzerland,2021,0.1601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2010,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2011,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2012,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2013,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2014,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2015,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2016,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2017,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2018,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2019,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2020,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Syria,2021,14.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2010,9.284444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2011,8.995555556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2012,8.706666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2013,8.417777778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2014,8.128888889,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2015,7.84,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2016,7.094,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2017,5.186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2018,7.378,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2019,7.378,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2020,7.378,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tajikistan,2021,7.378,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2010,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2011,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2012,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2013,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2014,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2015,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2016,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2017,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2018,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2019,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2020,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Thailand,2021,51.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2010,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2011,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2012,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2013,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2014,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2015,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2016,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2017,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2018,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2019,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2020,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,East Timor,2021,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2010,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2011,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2012,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2013,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2014,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2015,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2016,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2017,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2018,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2019,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2020,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Togo,2021,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2010,0.016416667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2011,0.0167,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2012,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2013,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2014,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2015,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2016,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2017,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2018,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2019,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2020,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Trinidad and Tobago,2021,0.0167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2010,2.613321591,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2011,2.644,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2012,2.71098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2013,2.77796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2014,2.84494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2015,2.91192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2016,2.9789,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2017,2.691,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2018,2.9326,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2019,2.933,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2020,2.71,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Tunisia,2021,2.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2010,26.437182729,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2011,26.450046517,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2012,26.462910305,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2013,26.475774093,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2014,26.488637881,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2015,26.501501669,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2016,26.514365457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2017,27.210754525,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2018,25.347241897,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2019,16.3538,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2020,16.1196,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkmenistan,2021,16.1196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2010,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2011,40.64,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2012,41.547,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2013,43.49,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2014,43.67,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2015,48.29,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2016,50.81,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2017,50.05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2018,51.735,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2019,54.27,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2020,54.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Turkey,2021,45.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2010,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2011,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2012,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2013,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2014,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2015,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2016,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2017,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2018,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2019,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2020,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uganda,2021,0.259,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2010,4.454,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2011,4.3235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2012,4.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2013,4.0625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2014,3.932,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2015,2.997,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2016,3.166,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2017,4.655,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2018,4.655,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2019,4.38,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2020,3.059,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Ukraine,2021,3.059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2010,2.901910871,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2011,2.819893045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2012,2.737875219,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2013,2.655857393,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2014,2.573839568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2015,2.491821742,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2016,2.409803916,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2017,2.370235242,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2018,2.429897182,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2019,2.378379591,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2020,2.316096682,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Arab Emirates,2021,2.238,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2010,1.187,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2011,0.9901,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2012,1.049,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2013,1.0435,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2014,1.038,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2015,1.259,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2016,1.183,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2017,1.183,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2018,1.183,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2019,1.183,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2020,1.183,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Kingdom,2021,1.183,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2010,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2011,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2012,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2013,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2014,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2015,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2016,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2017,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2018,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2019,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2020,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United Republic of Tanzania,2021,4.632,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2010,175.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2011,175.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2012,175.54,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2013,175.76,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2014,175.98,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2015,176.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2016,176.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2017,176.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2018,176.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2019,176.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2020,176.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,United States of America,2021,176.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2010,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2011,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2012,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2013,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2014,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2015,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2016,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2017,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2018,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2019,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2020,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uruguay,2021,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2010,48.744444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2011,48.413333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2012,48.082222222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2013,47.751111111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2014,47.42,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2015,50.77,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2016,50.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2017,54.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2018,52.0795,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2019,49.799,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2020,47.173,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Uzbekistan,2021,39.694,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2010,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2011,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2012,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2013,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2014,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2015,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2016,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2017,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2018,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2019,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2020,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Venezuela,2021,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2010,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2011,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2012,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2013,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2014,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2015,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2016,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2017,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2018,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2019,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2020,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Vietnam,2021,77.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2010,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2011,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2012,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2013,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2014,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2015,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2016,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2017,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2018,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2019,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2020,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Yemen,2021,3.235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2010,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2011,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2012,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2013,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2014,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2015,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2016,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2017,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2018,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2019,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2020,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zambia,2021,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2010,2.837375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2011,2.8065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2012,2.775625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2013,2.74475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2014,2.713875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2015,2.683,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2016,2.721,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2017,2.77,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2018,3.041069651,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2019,3.593480373,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2020,4.281249395,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal,Zimbabwe,2021,4.281249395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2010,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2011,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2012,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2013,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2014,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2015,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2016,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2017,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2018,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2019,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2020,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Afghanistan,2021,98.169627299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2010,48.734770384,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2011,50.965170319,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2012,53.293487735,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2013,55.726315407,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2014,58.270851551,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2015,69.565217391,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2016,70.264317181,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2017,64.010989011,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2018,68.162839248,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2019,61.184792219,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2020,69.338422392,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Albania,2021,70.854271357,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2010,59.348372837,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2011,59.286698924,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2012,59.228486647,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2013,61.604017653,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2014,63.803905763,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2015,65.846936612,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2016,64.141110443,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2017,63.764098643,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2018,63.764098643,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2019,63.764098643,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2020,63.764098643,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Algeria,2021,63.764098643,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2010,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2011,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2012,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2013,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2014,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2015,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2016,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2017,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2018,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2019,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2020,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Angola,2021,20.784924908,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2010,15.612382234,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2011,15.633074935,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2012,15.652173913,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2013,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2014,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2015,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2016,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2017,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2018,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2019,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2020,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Antigua and Barbuda,2021,15.652173913,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2010,73.68377543,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2011,73.928004235,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2012,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2013,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2014,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2015,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2016,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2017,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2018,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2019,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2020,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Argentina,2021,73.928004235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2010,58.202927814,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2011,67.473338802,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2012,71.676300578,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2013,77.508884752,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2014,74.908200734,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2015,81.743119266,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2016,80.0,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2017,73.170731707,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2018,69.344141489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2019,74.485165794,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2020,70.342877342,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Armenia,2021,76.036400404,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2010,53.833211412,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2011,55.113977205,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2012,59.847680879,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2013,65.677536966,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2014,63.358369099,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2015,54.241200231,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2016,65.537270428,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2017,69.414190822,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2018,70.65830365,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2019,66.645408163,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2020,62.21570066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Australia,2021,67.835550181,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2010,2.265036816,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2011,2.4391412,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2012,2.616297942,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2013,2.79658802,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2014,2.980095305,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2015,3.166906687,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2016,3.357112213,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2017,3.550805233,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2018,3.74808255,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2019,3.949044586,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2020,3.949044586,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Austria,2021,3.949044586,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2010,92.069279854,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2011,91.067634561,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2012,90.597077244,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2013,90.536935134,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2014,89.872325742,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2015,91.14552143,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2016,91.092776562,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2017,92.087458746,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2018,92.356373798,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2019,92.247815727,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2020,91.830547361,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Azerbaijan,2021,92.242442936,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2010,35.834574924,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2011,34.747833815,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2012,33.694938979,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2013,32.674333463,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2014,31.684554363,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2015,32.168646634,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2016,33.310313075,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2017,33.310313075,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2018,33.310313075,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2019,33.310313075,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2020,33.310313075,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bahrain,2021,33.310313075,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2010,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2011,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2012,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2013,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2014,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2015,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2016,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2017,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2018,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2019,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2020,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bangladesh,2021,87.817117368,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2010,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2011,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2012,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2013,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2014,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2015,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2016,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2017,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2018,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2019,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2020,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Barbados,2021,67.654320988,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2010,30.426356589,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2011,31.041214751,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2012,31.66520979,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2013,32.298546896,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2014,32.972628899,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2015,29.99308915,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2016,29.476584022,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2017,30.85182534,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2018,29.906542056,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2019,27.025036819,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2020,27.614747931,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belarus,2021,27.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2010,0.682433227,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2011,0.700437774,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2012,0.720865038,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2013,0.83619211,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2014,0.927643785,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2015,1.126690035,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2016,1.099846878,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2017,1.041040219,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2018,1.29935825,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2019,1.329754788,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2020,1.158056636,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belgium,2021,1.158056636,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2010,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2011,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2012,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2013,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2014,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2015,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2016,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2017,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2018,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2019,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2020,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Belize,2021,67.722772277,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2010,28.30705963,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2011,27.171052632,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2012,26.122707147,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2013,25.15225335,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2014,24.251321198,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2015,23.412698413,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2016,24.686192469,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2017,25.213675214,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2018,25.213675214,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2019,25.213675214,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2020,25.213675214,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Benin,2021,25.213675214,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2010,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2011,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2012,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2013,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2014,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2015,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2016,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2017,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2018,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2019,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2020,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bhutan,2021,94.082840237,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2010,91.444838159,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2011,90.94126138,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2012,90.443200511,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2013,89.950565418,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2014,89.46326792,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2015,88.981221737,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2016,88.504342438,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2017,88.032547393,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2018,87.565755726,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2019,87.103888263,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2020,86.911574128,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bolivia,2021,87.078380202,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2010,37.719995111,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2011,37.677484787,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2012,38.239835306,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2013,36.708529566,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2014,35.125066525,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2015,36.315228967,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2016,40.238450075,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2017,35.751295337,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2018,39.019607843,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2019,36.927570672,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2020,36.959799952,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Botswana,2021,33.387124045,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2010,60.002672725,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2011,58.707515888,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2012,57.321607322,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2013,55.835062241,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2014,54.236506228,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2015,54.026966503,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2016,60.865631126,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2017,60.033495737,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2018,58.360902256,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2019,63.078291815,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2020,61.636904762,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brazil,2021,61.3133264,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2010,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2011,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2012,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2013,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2014,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2015,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2016,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2017,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2018,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2019,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2020,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Brunei,2021,5.760869565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2010,15.760860446,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2011,16.444534933,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2012,16.612423447,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2013,15.087783467,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2014,13.516127832,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2015,14.722705795,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2016,15.951858079,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2017,14.75786497,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2018,13.34562212,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2019,11.453338252,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2020,12.822532992,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Bulgaria,2021,13.101227611,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2010,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2011,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2012,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2013,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2014,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2015,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2016,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2017,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2018,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2019,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2020,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burkina Faso,2021,51.430317848,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2010,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2011,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2012,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2013,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2014,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2015,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2016,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2017,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2018,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2019,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2020,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Burundi,2021,79.257408068,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2010,38.083857069,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2011,37.574241499,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2012,37.149117108,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2013,36.789080212,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2014,36.480246137,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2015,36.212417262,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2016,35.977935345,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2017,35.770937416,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2018,35.586858826,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2019,35.422092725,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2020,38.637977317,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cape Verde,2021,42.525551152,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2010,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2011,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2012,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2013,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2014,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2015,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2016,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2017,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2018,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2019,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2020,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cambodia,2021,94.001831502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2010,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2011,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2012,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2013,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2014,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2015,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2016,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2017,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2018,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2019,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2020,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cameroon,2021,67.714075708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2010,11.705451889,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2011,10.995890584,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2012,10.200203907,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2013,9.358869787,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2014,8.458601291,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2015,7.505688282,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2016,9.099183622,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2017,10.644636306,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2018,10.896205105,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2019,11.159952572,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2020,11.433057802,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Canada,2021,11.433057802,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2010,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2011,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2012,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2013,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2014,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2015,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2016,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2017,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2018,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2019,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2020,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Central African Republic,2021,0.551724138,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2010,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2011,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2012,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2013,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2014,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2015,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2016,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2017,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2018,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2019,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2020,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chad,2021,76.4211005,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2010,86.006794011,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2011,86.783380776,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2012,87.574119496,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2013,88.37940057,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2014,89.199628891,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2015,90.035224522,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2016,90.886623417,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2017,90.886623417,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2018,90.886623417,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2019,90.886623417,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2020,90.886623417,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Chile,2021,90.886623417,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2010,62.504235852,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2011,62.441627752,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2012,64.312945467,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2013,64.526743555,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2014,64.569425901,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2015,64.403945828,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2016,62.38204033,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2017,62.322533673,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2018,61.393067908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2019,61.155583605,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2020,62.144540591,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,China,2021,62.144540591,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2010,62.618936811,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2011,65.307784742,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2012,67.431113612,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2013,69.150357164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2014,70.570843691,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2015,71.764221518,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2016,75.0,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2017,79.712037692,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2018,85.341457971,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2019,85.890383541,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2020,86.365547476,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Colombia,2021,86.737973758,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2010,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2011,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2012,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2013,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2014,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2015,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2016,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2017,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2018,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2019,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2020,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Comoros,2021,47.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2010,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2011,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2012,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2013,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2014,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2015,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2016,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2017,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2018,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2019,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2020,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Republic of Congo,2021,4.362050164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2012,71.556518957,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2013,70.211186406,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2014,70.628158896,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2015,72.097181739,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2016,73.140795658,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2017,81.967213115,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2018,68.63016293,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2019,65.976683559,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2020,66.166045922,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Costa Rica,2021,60.719328656,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2010,6.880633111,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2011,6.688562438,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2012,6.618527792,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2013,6.825479284,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2014,6.909794954,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2015,6.978112562,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2016,6.870427764,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2017,7.645244557,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2018,7.711328449,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2019,7.622868606,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2020,7.524752475,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Croatia,2021,7.584830339,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2010,59.292116258,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2011,61.360059376,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2012,63.233077616,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2013,64.937491019,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2014,64.937491019,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2015,64.937491019,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2016,64.937491019,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2017,64.937491019,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2018,64.937491019,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2019,64.937491019,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2020,64.937491019,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cuba,2021,64.937491019,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2010,73.163565132,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2011,74.04408457,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2012,67.322834646,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2013,65.648256953,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2014,63.309352518,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2015,66.326530612,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2016,63.897763578,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2017,62.626262626,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2018,61.188811189,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2019,60.583941606,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2020,62.545454546,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Cyprus,2021,62.283737024,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2010,2.022474816,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2011,2.207174816,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2012,2.346550788,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2013,2.666666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2014,2.940106693,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2015,3.3875,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2016,2.896341463,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2017,2.858895706,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2018,3.144654088,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2019,2.855245684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2020,2.855051244,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Czech Republic,2021,2.742772424,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2010,44.774701185,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2011,46.319283878,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2012,47.949681279,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2013,49.726607163,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2014,51.635111876,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2015,51.635111876,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2016,51.635111876,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2017,51.635111876,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2018,51.635111876,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2019,51.635111876,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2020,51.635111876,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ivory Coast,2021,51.635111876,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2010,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2011,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2012,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2013,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2014,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2015,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2016,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2017,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2018,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2019,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2020,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,North Korea,2021,76.347339971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2010,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2011,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2012,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2013,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2014,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2015,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2016,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2017,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2018,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2019,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2020,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2021,10.517846694,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2010,33.602449889,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2011,32.822374613,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2012,26.037735849,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2013,40.093221361,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2014,43.316032531,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2015,47.745750185,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2016,52.06872643,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2017,53.330103438,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2018,59.624603348,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2019,53.575741809,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2020,54.006534006,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Denmark,2021,54.006534006,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2010,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2011,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2012,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2013,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2014,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2015,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2016,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2017,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2018,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2019,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2020,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Djibouti,2021,15.789473684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2010,5.0,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2011,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2012,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2013,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2014,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2015,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2016,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2017,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2018,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2019,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2020,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominica,2021,5.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2010,79.863051984,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2011,80.693545949,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2012,81.443475891,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2013,82.124022462,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2014,82.744388924,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2015,83.312219786,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2016,83.312219786,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2017,83.312219786,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2018,83.312219786,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2019,83.312219786,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2020,83.312219786,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Dominican Republic,2021,83.312219786,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2010,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2011,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2012,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2013,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2014,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2015,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2016,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2017,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2018,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2019,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2020,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ecuador,2021,81.427707199,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2010,85.897435897,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2011,84.996510817,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2012,85.062240664,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2013,85.068493151,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2014,84.829931973,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2015,84.370771313,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2016,84.271186441,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2017,79.161290323,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2018,79.161290323,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2019,79.161290323,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2020,79.161290323,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Egypt,2021,79.161290323,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2010,63.047410824,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2011,61.866797235,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2012,60.55883048,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2013,59.101729348,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2014,57.468445349,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2015,54.824255847,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2016,52.282057225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2017,48.823375909,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2018,45.633725089,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2019,41.730610913,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2020,37.40449351,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,El Salvador,2021,46.271007928,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2010,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2011,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2012,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2013,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2014,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2015,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2016,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2017,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2018,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2019,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2020,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Equatorial Guinea,2021,5.05050505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2010,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2011,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2012,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2013,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2014,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2015,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2016,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2017,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2018,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2019,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2020,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eritrea,2021,94.501718213,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2010,0.225855441,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2011,0.230380422,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2012,0.271977928,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2013,0.275636741,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2014,0.292888984,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2015,0.305933516,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2016,0.252917378,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2017,0.250223245,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2018,0.294588522,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2019,0.482986166,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2020,0.569405698,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Estonia,2021,0.497261393,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2010,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2011,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2012,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2013,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2014,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2015,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2016,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2017,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2018,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2019,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2020,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Eswatini,2021,94.194756554,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2010,90.519092237,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2011,90.767402804,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2012,91.003038532,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2013,91.226945737,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2014,91.439978817,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2015,91.642911151,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2016,91.819905213,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2017,91.836444478,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2018,91.836444478,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2019,91.836444478,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2020,91.836444478,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ethiopia,2021,91.836444478,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2010,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2011,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2012,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2013,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2014,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2015,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2016,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2017,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2018,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2019,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2020,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Fiji,2021,58.892815077,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2010,9.057436306,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2011,10.388793656,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2012,11.661267506,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2013,12.912363254,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2014,14.277685813,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2015,15.547024952,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2016,17.391304348,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2017,17.391304348,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2018,14.285714286,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2019,28.571428571,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2020,28.571428571,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Finland,2021,28.571428571,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2010,10.613058996,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2011,10.070987859,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2012,10.380215943,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2013,10.222042199,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2014,7.744440781,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2015,11.42765685,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2016,11.774272854,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2017,10.921843687,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2018,11.093980961,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2019,12.144411888,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2020,13.944409021,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,France,2021,13.944409021,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2010,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2011,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2012,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2013,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2014,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2015,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2016,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2017,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2018,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2019,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2020,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gabon,2021,28.971962617,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2010,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2011,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2012,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2013,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2014,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2015,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2016,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2017,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2018,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2019,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2020,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Gambia,2021,38.582677165,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2010,51.434463674,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2011,47.884789541,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2012,44.212921871,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2013,40.412440599,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2014,36.476467896,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2015,32.397626627,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2016,28.167994207,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2017,35.390278859,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2018,35.460685297,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2019,37.592071953,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2020,42.804706964,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Georgia,2021,46.60592425,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2010,1.76117682,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2011,2.18744291,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2012,2.529391724,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2013,2.626979193,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2014,2.752199016,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2015,3.212298429,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2016,3.004235131,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2017,3.321279307,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2018,4.301713293,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2019,4.166591548,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2020,4.166591548,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Germany,2021,4.166591548,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2010,72.870536605,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2011,73.195675465,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2012,73.394146712,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2013,74.133258574,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2014,74.782321173,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2015,72.568171154,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2016,73.0574901,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2017,73.0574901,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2018,73.0574901,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2019,73.0574901,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2020,73.0574901,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ghana,2021,73.0574901,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2010,85.985279729,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2011,85.37414966,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2012,83.371917463,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2013,83.455919396,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2014,83.523242916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2015,83.599111829,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2016,79.982241515,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2017,79.998026446,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2018,80.092867022,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2019,80.148294612,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2020,80.092867022,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Greece,2021,80.370774264,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2010,17.295714666,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2011,16.630736064,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2012,16.011695327,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2013,15.433991186,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2014,14.893617021,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2015,14.893617021,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2016,14.893617021,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2017,14.893617021,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2018,14.893617021,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2019,14.893617021,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2020,14.893617021,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Grenada,2021,14.893617021,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2010,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2011,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2012,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2013,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2014,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2015,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2016,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2017,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2018,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2019,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2020,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guatemala,2021,56.737161939,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2010,61.556336667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2011,62.415512584,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2012,63.233231404,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2013,64.012423031,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2014,64.755747637,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2015,65.465626002,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2016,66.144265852,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2017,66.793684791,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2018,67.415730337,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2019,67.415730337,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2020,67.415730337,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea,2021,67.415730337,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2010,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2011,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2012,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2013,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2014,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2015,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2016,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2017,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2018,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2019,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2020,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guinea Bissau,2021,75.789473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2010,94.344846681,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2011,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2012,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2013,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2014,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2015,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2016,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2017,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2018,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2019,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2020,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Guyana,2021,94.344846681,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2010,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2011,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2012,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2013,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2014,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2015,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2016,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2017,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2018,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2019,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2020,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Haiti,2021,83.379310345,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2010,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2011,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2012,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2013,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2014,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2015,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2016,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2017,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2018,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2019,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2020,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Honduras,2021,73.304293715,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2010,6.010230179,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2011,6.188811415,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2012,6.374975252,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2013,8.650496429,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2014,11.156488279,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2015,12.714066924,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2016,9.994481997,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2017,11.059266578,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2018,10.81210812,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2019,11.166023476,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2020,11.759275163,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Hungary,2021,11.759275163,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2010,0.112866817,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2011,0.101248734,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2012,0.101936799,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2013,0.068681319,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2014,0.072674419,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2015,0.107797341,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2016,0.115384615,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2017,0.107797341,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2018,0.107797341,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2019,0.107797341,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2020,0.107797341,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iceland,2021,0.107797341,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2010,90.407358738,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2011,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2012,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2013,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2014,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2015,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2016,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2017,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2018,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2019,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2020,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,India,2021,90.407358738,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2010,81.451233224,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2011,82.268677496,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2012,83.038325763,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2013,83.764250908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2014,84.450075837,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2015,84.831972433,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2016,85.206728502,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2017,85.206728502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2018,85.206728502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2019,85.206728502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2020,85.206728502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Indonesia,2021,85.206728502,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2010,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2011,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2012,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2013,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2014,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2015,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2016,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2017,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2018,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2019,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2020,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iran,2021,92.175777063,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2010,86.445783132,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2011,87.554858934,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2012,88.758169935,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2013,90.068259386,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2014,91.5,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2015,91.494845361,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2016,91.49156939,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2017,87.81054098,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2018,91.480488531,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2019,78.117273048,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2020,72.570045735,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Iraq,2021,73.470205544,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2010,8.959374178,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2011,8.14218844,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2012,7.356586612,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2013,6.383112664,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2014,5.504657787,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2015,4.924445203,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2016,4.201839615,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2017,3.069979375,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2018,2.251161573,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2019,2.298626034,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2020,2.459761163,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ireland,2021,2.530044276,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2010,57.321521626,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2011,56.306122449,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2012,55.332333833,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2013,54.397649363,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2014,53.499759962,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2015,52.63653484,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2016,55.614735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2017,43.346337234,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2018,51.651254954,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2019,51.380500431,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2020,49.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Israel,2021,48.396946565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2010,44.085145585,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2011,45.952290491,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2012,47.807045225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2013,49.707602339,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2014,49.716324501,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2015,49.725049725,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2016,49.850448654,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2017,49.976481656,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2018,50.103153551,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2019,50.132704217,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2020,50.162289761,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Italy,2021,50.162289761,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2010,30.665100123,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2011,27.182224787,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2012,24.084507042,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2013,21.311404831,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2014,18.81443299,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2015,16.363636364,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2016,8.419497784,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2017,9.906969349,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2018,12.04817383,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2019,15.395452487,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2020,21.36732608,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jamaica,2021,17.062870645,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2010,66.921182266,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2011,67.016676961,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2012,67.112763321,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2013,67.209446861,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2014,67.306733167,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2015,67.404627892,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2016,67.503136763,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2017,67.717528373,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2018,67.635903919,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2019,67.984693878,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2020,67.943805875,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Japan,2021,67.943805875,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2010,56.103023516,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2011,56.93471249,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2012,54.416961131,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2013,53.385127636,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2014,53.467670938,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2015,51.032565528,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2016,53.127095106,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2017,52.372817008,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2018,52.248234857,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2019,51.645457343,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2020,51.645457343,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Jordan,2021,51.645457343,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2010,59.127367404,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2011,59.697411593,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2012,58.380854445,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2013,60.760729661,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2014,57.803969148,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2015,61.066235864,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2016,61.049046887,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2017,61.837961638,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2018,63.579984708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2019,66.804873921,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2020,62.693372415,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kazakhstan,2021,62.693372415,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2010,59.260410193,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2011,59.260410193,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2012,59.260410193,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2013,59.260410193,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2014,59.260410193,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2015,59.260410193,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2016,80.208333333,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2017,80.208333333,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2018,80.208333333,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2019,80.208333333,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2020,80.208333333,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kenya,2021,80.208333333,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2010,56.491686242,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2011,57.087661338,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2012,57.667529777,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2013,58.231935796,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2014,58.781489724,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2015,59.316770186,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2016,60.509127449,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2017,62.272,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2018,62.272,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2019,62.272,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2020,62.272,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kuwait,2021,62.272,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2010,92.7549357,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2011,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2012,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2013,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2014,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2015,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2016,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2017,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2018,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2019,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2020,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Kyrgyzstan,2021,92.689295039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2010,94.789857589,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2011,95.169859926,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2012,95.49819928,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2013,95.784740762,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2014,96.036988111,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2015,96.178343949,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2016,96.083550914,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2017,95.901639344,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2018,95.901639344,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2019,95.918367347,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2020,95.918367347,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Laos,2021,95.918367347,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2010,18.37304848,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2011,16.981731533,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2012,15.680245965,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2013,14.648910412,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2014,21.997621879,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2015,27.818696884,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2016,31.260446995,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2017,31.156089791,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2018,29.928715182,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2019,29.746569706,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2020,30.53125914,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Latvia,2021,30.53125914,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2010,46.984126984,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2011,44.963144963,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2012,43.069601428,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2013,41.291810842,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2014,39.619473979,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2015,38.043478261,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2016,38.043478261,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2017,38.043478261,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2018,38.043478261,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2019,38.043478261,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2020,38.043478261,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lebanon,2021,38.043478261,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2010,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2011,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2012,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2013,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2014,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2015,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2016,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2017,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2018,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2019,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2020,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lesotho,2021,8.675799087,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2010,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2011,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2012,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2013,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2014,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2015,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2016,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2017,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2018,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2019,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2020,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Liberia,2021,8.430431803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2010,83.104629077,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2011,83.148545955,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2012,83.190394511,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2013,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2014,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2015,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2016,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2017,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2018,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2019,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2020,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Libya,2021,83.190394511,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2010,6.810743021,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2011,7.712645902,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2012,9.114292381,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2013,11.590218712,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2014,16.191275168,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2015,15.602447602,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2016,19.259499838,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2017,22.741312741,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2018,22.461574747,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2019,22.461574747,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2020,22.461574747,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Lithuania,2021,22.461574747,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2010,0.210526316,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2011,1.030927835,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2012,0.449438202,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2013,0.696055684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2014,0.657894737,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2015,1.5625,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2016,0.675675676,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2017,0.877192982,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2018,0.957854406,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2019,1.21703854,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2020,0.0,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Luxembourg,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2010,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2011,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2012,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2013,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2014,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2015,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2016,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2017,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2018,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2019,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2020,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Madagascar,2021,95.892128731,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2010,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2011,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2012,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2013,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2014,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2015,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2016,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2017,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2018,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2019,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2020,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malawi,2021,85.9375,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2010,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2011,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2012,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2013,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2014,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2015,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2016,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2017,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2018,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2019,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2020,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malaysia,2021,45.645043732,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2010,0.273008629,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2011,0.409512943,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2012,0.546017257,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2013,0.682521572,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2014,0.819025886,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2015,0.9555302,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2016,1.092034515,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2017,1.228538829,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2018,1.365043143,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2019,1.501547458,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2020,3.02360678,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Maldives,2021,4.545666102,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2010,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2011,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2012,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2013,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2014,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2015,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2016,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2017,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2018,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2019,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2020,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mali,2021,97.859622059,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2010,48.568188262,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2011,54.537791515,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2012,60.401002506,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2013,64.017660044,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2014,44.287949922,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2015,41.100323625,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2016,40.605095541,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2017,42.424242424,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2018,39.746039215,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2019,36.511408225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2020,37.947470952,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Malta,2021,36.674807598,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2010,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2011,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2012,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2013,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2014,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2015,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2016,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2017,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2018,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2019,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2020,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritania,2021,90.579173456,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2010,62.442040185,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2011,62.34676007,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2012,62.714776632,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2013,61.677631579,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2014,60.161290323,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2015,56.045751634,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2016,57.028753994,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2017,55.844155844,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2018,51.006711409,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2019,50.334448161,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2020,50.164473684,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mauritius,2021,49.752066116,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2010,76.681180066,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2011,76.687422167,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2012,76.571621965,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2013,75.716192879,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2014,76.720199689,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2015,76.297204226,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2016,76.290469755,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2017,76.047358834,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2018,75.720461095,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2019,75.708162192,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2020,75.739268325,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mexico,2021,75.679311572,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2010,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2011,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2012,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2013,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2014,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2015,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2016,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2017,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2018,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2019,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2020,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Monaco,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2010,46.307228537,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2011,48.883520501,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2012,51.672445442,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2013,54.701460786,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2014,58.002964061,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2015,61.615456238,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2016,54.260380623,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2017,54.260380623,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2018,54.260380623,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2019,54.260380623,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2020,54.260380623,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mongolia,2021,54.260380623,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2010,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2011,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2012,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2013,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2014,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2015,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2016,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2017,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2018,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2019,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2020,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Montenegro,2021,1.056556868,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2010,87.776819097,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2011,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2012,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2013,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2014,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2015,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2016,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2017,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2018,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2019,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2020,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Morocco,2021,87.776819097,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2010,73.201317557,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2011,73.167141459,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2012,73.13489196,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2013,73.104410612,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2014,73.075555883,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2015,73.04820095,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2016,73.04820095,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2017,73.04820095,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2018,73.04820095,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2019,73.04820095,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2020,73.04820095,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Mozambique,2021,73.04820095,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2010,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2011,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2012,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2013,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2014,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2015,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2016,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2017,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2018,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2019,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2020,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Myanmar,2021,88.555735908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2010,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2011,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2012,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2013,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2014,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2015,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2016,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2017,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2018,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2019,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2020,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Namibia,2021,69.791666667,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2010,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2011,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2012,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2013,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2014,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2015,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2016,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2017,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2018,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2019,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2020,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nepal,2021,98.135220225,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2010,1.117113817,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2011,1.099204596,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2012,0.561399582,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2013,1.084409458,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2014,0.927265184,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2015,1.259095449,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2016,0.953461126,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2017,1.512089134,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2018,3.734147487,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2019,3.015446129,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2020,3.698531182,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Netherlands,2021,1.035949167,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2010,61.661218996,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2011,62.386840411,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2012,63.129743233,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2013,63.890552264,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2014,64.669922791,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2015,65.468542472,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2016,66.287133356,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2017,66.098331857,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2018,65.732480143,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2019,65.587732072,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2020,65.587732072,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,New Zealand,2021,65.587732072,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2010,78.268699609,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2011,79.078311492,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2012,79.724780312,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2013,80.39633349,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2014,81.094459899,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2015,81.820768621,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2016,82.577001329,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2017,83.365046223,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2018,84.186953783,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2019,85.086342229,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2020,85.044954575,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nicaragua,2021,85.044954575,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2010,87.458852908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2011,90.81861013,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2012,93.973142918,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2013,90.483487578,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2014,87.595104201,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2015,88.527446994,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2016,87.912087912,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2017,86.410959666,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2018,90.865597565,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2019,91.023106112,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2020,91.023106112,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Niger,2021,91.023106112,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2010,44.168336673,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2011,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2012,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2013,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2014,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2015,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2016,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2017,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2018,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2019,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2020,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Nigeria,2021,44.168336673,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2010,48.504446241,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2011,44.346904798,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2012,79.299027078,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2013,31.53426319,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2014,39.399896716,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2015,31.296485037,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2016,18.950493945,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2017,46.153434638,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2018,14.18686833,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2019,23.401944477,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2020,61.680459385,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Macedonia,2021,31.53426319,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2010,30.113697117,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2011,30.515024559,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2012,30.927193528,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2013,30.680126366,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2014,30.404116737,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2015,31.135760613,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2016,31.903485255,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2017,31.394916766,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2018,31.419998919,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2019,31.445121182,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2020,31.470283652,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Norway,2021,31.956216693,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2010,86.441671061,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2011,86.229992054,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2012,86.031151962,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2013,85.844017094,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2014,84.678718454,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2015,82.638888889,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2016,82.638888889,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2017,82.638888889,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2018,82.594767752,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2019,80.783289817,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2020,80.783289817,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Oman,2021,80.783289817,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2010,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2011,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2012,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2013,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2014,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2015,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2016,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2017,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2018,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2019,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2020,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Pakistan,2021,93.976560371,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2010,45.215311005,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2011,45.215311005,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2012,45.215311005,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2013,45.215311005,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2014,45.215311005,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2015,45.215311005,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2016,45.215311005,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2017,43.176972281,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2018,45.057766367,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2019,45.608997368,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2020,48.126672614,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Palestine,2021,49.224452555,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2010,43.008678881,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2011,41.504500122,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2012,40.154618358,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2013,38.936450444,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2014,38.764465906,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2015,35.730839927,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2016,36.825160971,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2017,36.825160971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2018,36.825160971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2019,36.825160971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2020,36.825160971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Panama,2021,36.825160971,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2010,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2011,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2012,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2013,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2014,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2015,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2016,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2017,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2018,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2019,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2020,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Papua New Guinea,2021,0.25503698,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2010,76.907492056,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2011,77.408880295,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2012,78.615830916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2013,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2014,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2015,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2016,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2017,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2018,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2019,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2020,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Paraguay,2021,78.615830916,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2010,87.514949877,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2011,87.122784877,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2012,86.810858492,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2013,86.55683044,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2014,86.345949516,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2015,86.168083297,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2016,86.017625255,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2017,85.88531803,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2018,85.769787257,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2019,85.084306096,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2020,85.084306096,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Peru,2021,85.084306096,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2010,81.515016872,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2011,80.77659739,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2012,80.607254772,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2013,80.429144908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2014,81.222288796,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2015,78.633349151,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2016,77.482134907,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2017,74.039287414,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2018,73.75213317,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2019,78.852965965,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2020,77.564252618,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Philippines,2021,76.233784907,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2010,10.611080434,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2011,10.293232038,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2012,9.599303136,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2013,10.068585826,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2014,9.879315184,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2015,9.444920499,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2016,9.950859951,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2017,10.098204543,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2018,13.84707407,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2019,14.088649965,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2020,15.077962347,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Poland,2021,14.153250459,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2010,67.046775847,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2011,65.633191872,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2012,64.533810266,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2013,63.075377677,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2014,61.501971019,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2015,59.799436599,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2016,57.802820662,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2017,55.48113679,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2018,56.991333333,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2019,55.756421524,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2020,55.756421524,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Portugal,2021,55.756421524,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2010,1.54357406,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2011,1.860168064,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2012,2.206017751,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2013,2.585374733,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2014,3.003356386,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2015,3.466178042,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2016,3.466178042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2017,3.466178042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2018,3.466178042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2019,3.466178042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2020,3.466178042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Puerto Rico,2021,3.466178042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2010,40.763933595,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2011,39.315063534,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2012,38.64126708,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2013,36.410060003,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2014,35.140610105,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2015,28.304208713,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2016,31.963620425,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2017,26.963657679,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2018,41.369075376,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2019,35.819972733,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2020,36.440044189,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Qatar,2021,33.307278381,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2010,57.945991302,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2011,57.858230418,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2012,57.770734964,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2013,57.683503739,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2014,57.596535547,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2015,59.194421779,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2016,58.932132043,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2017,58.932132043,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2018,58.932132043,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2019,58.932132043,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2020,58.932132043,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Korea,2021,58.932132043,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2010,4.158767773,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2011,4.277097423,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2012,4.402357958,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2013,4.424034668,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2014,5.017921147,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2015,5.238095238,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2016,5.100830368,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2017,5.0,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2018,5.13739546,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2019,5.238095238,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2020,6.875,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Moldova,2021,6.892230576,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2010,11.897106109,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2011,14.606060606,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2012,16.862079605,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2013,17.684636959,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2014,17.430754537,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2015,19.969064192,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2016,19.501098212,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2017,22.013878636,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2018,22.24127182,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2019,23.051623052,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2020,30.82747431,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Romania,2021,31.536113937,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2010,19.939577039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2011,19.939577039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2012,19.939577039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2013,19.939577039,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2014,26.380454738,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2015,28.017931476,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2016,28.075320266,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2017,28.97065673,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2018,28.756556618,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2019,28.756556618,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2020,28.756556618,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Russia,2021,28.756556618,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2010,63.216030079,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2011,62.68139582,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2012,62.209205331,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2013,61.789122352,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2014,61.412972601,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2015,61.074206603,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2016,60.767515096,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2017,60.488548742,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2018,60.233710562,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2019,59.016393443,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2020,60.033305579,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Rwanda,2021,59.180327869,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2012,1.282051282,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2013,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2014,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2015,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2016,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2017,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2018,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2019,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2020,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2021,1.282051282,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2010,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2011,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2012,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2013,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2014,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2015,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2016,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2017,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2018,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2019,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2020,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Lucia,2021,70.862470863,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2010,15.053033377,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2011,10.131700967,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2012,5.114957114,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2013,0.0,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2014,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2015,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2016,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2017,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2018,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2019,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2020,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sao Tome and Principe,2016,62.591687042,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sao Tome and Principe,2017,62.591687042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sao Tome and Principe,2018,62.591687042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sao Tome and Principe,2019,62.591687042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sao Tome and Principe,2020,62.591687042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sao Tome and Principe,2021,62.591687042,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2010,85.358398288,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2011,84.625595378,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2012,83.860153257,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2013,83.733884372,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2014,83.753309985,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2015,83.883698454,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2016,82.685719061,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2017,82.226980728,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2018,81.563558018,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2019,81.563558018,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2020,81.563558018,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Saudi Arabia,2021,81.563558018,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2010,90.734889188,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2011,90.472834429,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2012,90.214515442,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2013,89.959852908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2014,89.708769739,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2015,89.461190998,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2016,89.217043825,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2017,88.976257366,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2018,91.114841467,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2019,91.313894249,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2020,91.313894249,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Senegal,2021,91.313894249,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2010,14.677006848,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2011,14.160485502,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2012,16.141121737,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2013,15.23373494,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2014,16.029370665,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2015,15.410045857,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2016,13.481355572,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2017,12.288466545,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2018,12.81691408,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2019,12.62058164,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2020,12.408676871,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Serbia,2021,12.532171847,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2010,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2011,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2012,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2013,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2014,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2015,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2016,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2017,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2018,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2019,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2020,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Seychelles,2021,6.569343066,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2010,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2011,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2012,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2013,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2014,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2015,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2016,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2017,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2018,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2019,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2020,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sierra Leone,2021,21.536286522,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2010,1.621761042,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2011,1.859937274,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2012,2.166048663,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2013,2.573995724,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2014,3.144735154,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2015,4.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2016,4.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2017,4.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2018,4.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2019,4.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2020,4.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Singapore,2021,4.0,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2010,3.065266058,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2011,4.112931335,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2012,4.614459642,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2013,5.11600238,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2014,4.094403719,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2015,5.518185678,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2016,3.887850467,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2017,5.68038828,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2018,4.600179695,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2019,5.2273541,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2020,5.315315315,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovakia,2021,5.373749874,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2010,0.170363798,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2011,0.34041346,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2012,0.247818123,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2013,0.31152648,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2014,0.163215342,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2015,0.390189521,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2016,0.371914798,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2017,0.418724501,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2018,0.312174818,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2019,0.31779661,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2020,0.298804781,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Slovenia,2021,0.322234157,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2010,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2011,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2012,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2013,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2014,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2015,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2016,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2017,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2018,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2019,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2020,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Somalia,2021,99.484536083,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2010,62.266258481,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2011,62.351849208,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2012,62.435108053,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2013,62.516129032,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2014,61.56323185,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2015,60.77170418,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2016,59.475065617,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2017,58.771929825,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2018,57.833753149,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2019,60.846560847,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2020,62.479181922,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Africa,2021,61.324219547,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2012,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2013,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2014,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2015,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2016,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2017,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2018,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2019,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2020,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,South Sudan,2021,36.474164134,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2010,66.31841926,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2011,67.642777635,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2012,69.51229497,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2013,65.698061242,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2014,66.847280144,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2015,65.748556197,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2016,65.228532078,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2017,65.823752243,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2018,65.265734979,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2019,65.29999361,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2020,65.33425224,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Spain,2021,65.33425224,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2010,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2011,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2012,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2013,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2014,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2015,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2016,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2017,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2018,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2019,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2020,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sri Lanka,2021,87.362892013,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2012,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2013,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2014,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2015,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2016,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2017,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2018,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2019,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2020,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sudan,2021,96.194542417,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2010,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2011,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2012,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2013,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2014,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2015,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2016,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2017,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2018,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2019,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2020,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Suriname,2021,69.995129079,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2010,3.644477501,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2011,3.556469423,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2012,3.464149177,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2013,3.367191874,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2014,3.26523915,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2015,3.157894737,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2016,3.475103734,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2017,3.809608383,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2018,4.162862881,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2019,4.536489152,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2020,4.106280193,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Sweden,2021,4.932301741,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2010,6.72617014,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2011,7.340281696,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2012,7.985833998,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2013,9.309222003,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2014,9.396642799,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2015,9.223412836,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2016,9.228729536,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2017,9.234052371,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2018,9.05645435,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2019,9.250057777,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2020,9.191640831,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Switzerland,2021,9.325489282,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2010,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2011,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2012,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2013,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2014,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2015,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2016,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2017,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2018,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2019,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2020,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Syria,2021,87.527743968,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2010,90.990265043,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2011,91.038713943,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2012,91.090434807,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2013,91.145770673,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2014,91.205114268,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2015,87.96140469,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2016,81.083552406,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2017,64.922383575,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2018,75.485983221,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2019,69.590643275,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2020,74.525252525,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tajikistan,2021,74.525252525,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2010,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2011,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2012,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2013,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2014,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2015,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2016,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2017,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2018,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2019,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2020,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Thailand,2021,90.374480857,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2010,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2011,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2012,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2013,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2014,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2015,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2016,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2017,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2018,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2019,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2020,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,East Timor,2021,91.38225256,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2010,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2011,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2012,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2013,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2014,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2015,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2016,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2017,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2018,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2019,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2020,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Togo,2021,34.080717489,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2010,4.356335663,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2011,4.358037578,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2012,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2013,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2014,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2015,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2016,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2017,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2018,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2019,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2020,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Trinidad and Tobago,2021,4.358037578,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2010,80.175535846,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2011,80.0,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2012,79.797605171,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2013,79.605919235,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2014,79.424114172,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2015,79.251445181,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2016,79.087240482,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2017,74.419247788,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2018,76.276432492,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2019,76.376230405,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2020,75.542175392,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Tunisia,2021,75.542175392,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2010,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2011,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2012,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2013,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2014,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2015,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2016,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2017,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2018,94.297774916,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2019,59.021730108,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2020,61.420401072,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkmenistan,2021,92.748704485,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2010,85.745752045,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2011,86.147323794,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2012,86.0631797,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2013,85.862923367,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2014,85.188147397,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2015,86.706707246,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2016,87.571741266,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2017,87.045482352,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2018,87.117959081,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2019,87.324269156,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2020,86.990141117,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Turkey,2021,77.05479452,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2010,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2011,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2012,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2013,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2014,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2015,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2016,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2017,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2018,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2019,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2020,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uganda,2021,40.659340659,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2010,29.993265993,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2011,30.889865324,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2012,31.893207576,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2013,33.03516975,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2014,34.346610762,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2015,31.05055947,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2016,32.103021699,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2017,41.55507945,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2018,41.55507945,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2019,39.573545356,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2020,30.992907801,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Ukraine,2021,30.996048232,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2010,64.998576114,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2011,61.868370132,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2012,58.86376418,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2013,55.977347357,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2014,53.202280546,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2015,50.532242314,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2016,47.961380838,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2017,47.387915984,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2018,47.752747102,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2019,47.254297716,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2020,46.495712808,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Arab Emirates,2021,45.667034809,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2010,14.7794905,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2011,12.888570685,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2012,12.770878987,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2013,13.813690579,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2014,14.600798965,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2015,15.429867026,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2016,14.049881235,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2017,14.049881235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2018,14.049881235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2019,14.049881235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2020,14.049881235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Kingdom,2021,14.049881235,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2010,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2011,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2012,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2013,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2014,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2015,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2016,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2017,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2018,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2019,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2020,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United Republic of Tanzania,2021,89.351851852,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2010,36.05922692,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2011,36.729306769,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2012,37.422985908,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2013,38.141533387,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2014,38.886310905,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2015,39.658781426,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2016,39.658781426,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2017,39.658781426,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2018,39.658781426,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2019,39.658781426,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2020,39.658781426,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,United States of America,2021,39.658781426,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2010,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2011,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2012,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2013,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2014,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2015,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2016,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2017,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2018,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2019,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2020,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uruguay,2021,86.612021858,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2010,90.832858844,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2011,91.008208534,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2012,91.186665683,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2013,91.368313632,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2014,91.55323873,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2015,92.081398723,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2016,91.660557185,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2017,92.292020373,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2018,92.2766979,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2019,92.261375426,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2020,92.105982505,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Uzbekistan,2021,90.912005863,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2010,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2011,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2012,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2013,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2014,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2015,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2016,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2017,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2018,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2019,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2020,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Venezuela,2021,73.852110155,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2010,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2011,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2012,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2013,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2014,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2015,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2016,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2017,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2018,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2019,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2020,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Vietnam,2021,94.782396684,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2010,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2011,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2012,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2013,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2014,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2015,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2016,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2017,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2018,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2019,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2020,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Yemen,2021,90.743338008,%,I,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2010,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2011,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2012,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2013,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2014,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2015,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2016,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2017,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2018,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2019,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2020,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zambia,2021,73.282442748,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2010,80.960584369,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2011,80.580559025,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2012,80.195749138,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2013,79.806063778,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2014,79.411409698,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2015,79.011691257,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2016,79.989417056,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2017,82.956485281,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2018,80.635425752,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2019,84.826631593,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2020,87.200182549,%,E,False
+Water use,Water withdrawal by sector,Agricultural water withdrawal as % of total water withdrawal,Zimbabwe,2021,87.200182549,%,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2010,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2011,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2012,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2013,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2014,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2015,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2016,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2017,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2018,28.29,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2019,28.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2020,28.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Afghanistan,2021,28.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2010,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2011,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2012,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2013,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2014,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2015,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2016,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2017,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2018,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2019,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2020,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Albania,2021,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2010,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2011,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2012,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2013,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2014,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2015,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2016,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2017,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2018,4.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2019,4.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2020,4.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Algeria,2021,4.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2010,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2011,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2012,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2013,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2014,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2015,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2016,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2017,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2018,0.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2019,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2020,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Andorra,2021,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2010,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2011,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2012,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2013,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2014,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2015,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2016,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2017,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2018,110.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2019,110.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2020,110.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Angola,2021,110.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2010,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2011,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2012,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2013,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2014,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2015,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2016,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2017,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2018,515.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2019,515.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2020,515.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Argentina,2021,515.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2010,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2011,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2012,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2013,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2014,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2015,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2016,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2017,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2018,2.812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2019,2.812,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2020,2.812,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Armenia,2021,2.812,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2010,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2011,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2012,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2013,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2014,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2015,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2016,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2017,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2018,243.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2019,243.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2020,243.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Australia,2021,243.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2010,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2011,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2012,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2013,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2014,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2015,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2016,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2017,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2018,41.51,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2019,41.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2020,41.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Austria,2021,41.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2010,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2011,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2012,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2013,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2014,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2015,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2016,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2017,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2018,12.03,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2019,12.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2020,12.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Azerbaijan,2021,12.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2010,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2011,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2012,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2013,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2014,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2015,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2016,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2017,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2018,600.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2019,600.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2020,600.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bangladesh,2021,600.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2010,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2011,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2012,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2013,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2014,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2015,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2016,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2017,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2018,27.56,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2019,27.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2020,27.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belarus,2021,27.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2010,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2011,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2012,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2013,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2014,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2015,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2016,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2017,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2018,10.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2019,10.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2020,10.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belgium,2021,10.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2010,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2011,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2012,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2013,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2014,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2015,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2016,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2017,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2018,13.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2019,13.72,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2020,13.72,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Belize,2021,13.72,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2010,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2011,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2012,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2013,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2014,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2015,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2016,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2017,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2018,13.06,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2019,13.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2020,13.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Benin,2021,13.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2010,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2011,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2012,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2013,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2014,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2015,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2016,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2017,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2018,54.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2019,54.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2020,54.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bhutan,2021,54.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2010,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2011,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2012,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2013,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2014,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2015,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2016,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2017,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2018,396.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2019,396.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2020,396.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bolivia,2021,396.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2010,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2011,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2012,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2013,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2014,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2015,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2016,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2017,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2018,22.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2019,22.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2020,22.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bosnia and Herzegovina,2021,22.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2010,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2011,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2012,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2013,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2014,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2015,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2016,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2017,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2018,2.677,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2019,2.677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2020,2.677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Botswana,2021,2.677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2010,6532.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2011,6532.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2012,6532.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2013,6532.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2014,6532.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2015,6532.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2016,6532.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2017,6532.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2018,4105.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2019,4105.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2020,4105.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brazil,2021,4105.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2010,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2011,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2012,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2013,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2014,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2015,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2016,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2017,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2018,5.846,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2019,5.846,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2020,5.846,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Brunei,2021,5.846,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2010,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2011,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2012,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2013,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2014,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2015,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2016,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2017,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2018,7.771,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2019,7.771,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2020,7.771,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Bulgaria,2021,7.771,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2010,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2011,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2012,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2013,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2014,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2015,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2016,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2017,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2018,3.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2019,3.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2020,3.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burkina Faso,2021,3.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2010,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2011,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2012,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2013,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2014,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2015,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2016,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2017,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2018,9.788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2019,9.788,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2020,9.788,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Burundi,2021,9.788,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2010,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2011,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2012,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2013,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2014,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2015,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2016,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2017,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2018,265.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2019,265.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2020,265.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cambodia,2021,265.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2010,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2011,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2012,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2013,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2014,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2015,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2016,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2017,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2018,213.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2019,213.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2020,213.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cameroon,2021,213.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2010,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2011,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2012,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2013,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2014,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2015,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2016,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2017,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2018,1931.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2019,1931.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2020,1931.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Canada,2021,1931.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2010,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2011,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2012,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2013,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2014,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2015,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2016,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2017,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2018,119.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2019,119.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2020,119.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Central African Republic,2021,119.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2010,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2011,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2012,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2013,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2014,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2015,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2016,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2017,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2018,25.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2019,25.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2020,25.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chad,2021,25.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2010,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2011,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2012,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2013,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2014,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2015,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2016,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2017,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2018,529.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2019,529.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2020,529.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Chile,2021,529.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2010,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2011,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2012,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2013,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2014,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2015,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2016,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2017,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2018,1471.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2019,1471.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2020,1471.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,China,2021,1471.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2010,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2011,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2012,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2013,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2014,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2015,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2016,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2017,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2018,1692.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2019,1692.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2020,1692.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Colombia,2021,1692.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2010,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2011,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2012,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2013,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2014,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2015,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2016,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2017,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2018,664.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2019,664.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2020,664.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Republic of Congo,2021,664.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2010,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2011,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2012,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2013,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2014,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2015,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2016,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2017,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2018,54.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2019,54.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2020,54.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Costa Rica,2021,54.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2010,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2011,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2012,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2013,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2014,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2015,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2016,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2017,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2018,60.52,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2019,60.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2020,60.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Croatia,2021,60.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2010,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2011,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2012,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2013,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2014,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2015,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2016,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2017,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2018,9.055,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2019,9.055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2020,9.055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cuba,2021,9.055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2010,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2011,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2012,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2013,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2014,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2015,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2016,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2017,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2018,0.0484,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2019,0.0484,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2020,0.0484,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Cyprus,2021,0.0484,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2010,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2011,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2012,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2013,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2014,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2015,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2016,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2017,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2018,6.574,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2019,6.574,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2020,6.574,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Czech Republic,2021,6.574,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2010,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2011,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2012,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2013,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2014,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2015,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2016,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2017,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2018,61.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2019,61.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2020,61.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ivory Coast,2021,61.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2010,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2011,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2012,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2013,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2014,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2015,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2016,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2017,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2018,45.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2019,45.94,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2020,45.94,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,North Korea,2021,45.94,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2010,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2011,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2012,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2013,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2014,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2015,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2016,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2017,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2018,981.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2019,981.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2020,981.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Democratic Republic of the Congo,2021,981.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2010,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2011,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2012,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2013,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2014,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2015,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2016,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2017,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2018,2.302,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2019,2.302,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2020,2.302,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Denmark,2021,2.302,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2010,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2011,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2012,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2013,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2014,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2015,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2016,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2017,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2018,5.456,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2019,5.456,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2020,5.456,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Dominican Republic,2021,5.456,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2010,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2011,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2012,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2013,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2014,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2015,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2016,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2017,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2018,296.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2019,296.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2020,296.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ecuador,2021,296.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2010,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2011,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2012,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2013,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2014,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2015,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2016,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2017,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2018,2.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2019,2.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2020,2.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Egypt,2021,2.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2010,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2011,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2012,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2013,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2014,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2015,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2016,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2017,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2018,10.24,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2019,10.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2020,10.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,El Salvador,2021,10.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2010,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2011,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2012,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2013,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2014,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2015,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2016,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2017,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2018,15.21,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2019,15.21,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2020,15.21,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Equatorial Guinea,2021,15.21,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2010,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2011,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2012,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2013,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2014,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2015,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2016,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2017,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2018,2.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2019,2.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2020,2.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eritrea,2021,2.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2010,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2011,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2012,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2013,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2014,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2015,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2016,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2017,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2018,3.566,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2019,3.566,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2020,3.566,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Estonia,2021,3.566,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2010,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2011,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2012,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2013,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2014,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2015,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2016,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2017,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2018,3.133,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2019,3.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2020,3.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Eswatini,2021,3.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2010,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2011,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2012,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2013,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2014,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2015,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2016,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2017,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2018,89.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2019,89.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2020,89.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ethiopia,2021,89.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2010,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2011,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2012,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2013,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2014,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2015,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2016,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2017,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2018,67.83,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2019,67.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2020,67.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Finland,2021,67.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2010,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2011,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2012,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2013,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2014,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2015,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2016,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2017,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2018,96.77,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2019,96.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2020,96.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,France,2021,96.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2010,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2011,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2012,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2013,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2014,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2015,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2016,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2017,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2018,138.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2019,138.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2020,138.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gabon,2021,138.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2010,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2011,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2012,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2013,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2014,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2015,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2016,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2017,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2018,3.402,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2019,3.402,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2020,3.402,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Gambia,2021,3.402,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2010,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2011,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2012,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2013,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2014,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2015,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2016,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2017,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2018,32.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2019,32.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2020,32.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Georgia,2021,32.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2010,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2011,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2012,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2013,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2014,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2015,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2016,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2017,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2018,81.04,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2019,81.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2020,81.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Germany,2021,81.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2010,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2011,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2012,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2013,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2014,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2015,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2016,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2017,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2018,33.26,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2019,33.26,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2020,33.26,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ghana,2021,33.26,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2010,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2011,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2012,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2013,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2014,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2015,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2016,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2017,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2018,18.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2019,18.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2020,18.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Greece,2021,18.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2010,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2011,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2012,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2013,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2014,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2015,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2016,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2017,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2018,70.02,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2019,70.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2020,70.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guatemala,2021,70.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2010,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2011,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2012,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2013,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2014,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2015,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2016,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2017,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2018,161.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2019,161.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2020,161.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea,2021,161.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2010,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2011,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2012,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2013,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2014,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2015,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2016,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2017,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2018,19.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2019,19.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2020,19.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guinea Bissau,2021,19.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2010,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2011,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2012,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2013,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2014,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2015,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2016,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2017,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2018,227.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2019,227.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2020,227.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Guyana,2021,227.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2010,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2011,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2012,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2013,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2014,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2015,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2016,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2017,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2018,3.188,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2019,3.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2020,3.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Haiti,2021,3.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2010,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2011,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2012,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2013,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2014,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2015,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2016,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2017,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2018,57.39,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2019,57.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2020,57.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Honduras,2021,57.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2010,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2011,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2012,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2013,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2014,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2015,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2016,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2017,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2018,46.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2019,46.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2020,46.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Hungary,2021,46.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2010,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2011,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2012,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2013,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2014,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2015,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2016,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2017,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2018,96.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2019,96.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2020,96.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iceland,2021,96.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2010,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2011,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2012,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2013,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2014,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2015,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2016,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2017,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2018,937.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2019,937.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2020,937.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,India,2021,937.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2010,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2011,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2012,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2013,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2014,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2015,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2016,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2017,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2018,1269.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2019,1269.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2020,1269.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Indonesia,2021,1269.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2010,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2011,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2012,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2013,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2014,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2015,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2016,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2017,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2018,22.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2019,22.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2020,22.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iran,2021,22.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2010,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2011,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2012,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2013,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2014,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2015,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2016,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2017,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2018,18.66,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2019,18.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2020,18.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Iraq,2021,18.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2010,31.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2011,31.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2012,31.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2013,31.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2014,31.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2015,31.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2016,31.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2017,31.22,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2018,44.88,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2019,44.88,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2020,44.88,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ireland,2021,44.88,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2010,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2011,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2012,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2013,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2014,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2015,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2016,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2017,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2018,0.6209,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2019,0.6209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2020,0.6209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Israel,2021,0.6209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2010,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2011,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2012,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2013,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2014,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2015,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2016,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2017,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2018,77.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2019,77.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2020,77.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Italy,2021,77.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2010,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2011,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2012,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2013,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2014,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2015,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2016,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2017,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2018,212.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2019,212.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2020,212.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Japan,2021,212.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2010,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2011,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2012,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2013,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2014,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2015,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2016,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2017,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2018,0.0341,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2019,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2020,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Jordan,2021,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2010,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2011,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2012,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2013,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2014,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2015,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2016,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2017,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2018,36.31,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2019,36.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2020,36.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kazakhstan,2021,36.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2010,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2011,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2012,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2013,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2014,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2015,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2016,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2017,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2018,18.57,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2019,18.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2020,18.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kenya,2021,18.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2010,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2011,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2012,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2013,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2014,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2015,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2016,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2017,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2018,8.216,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2019,8.216,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2020,8.216,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Kyrgyzstan,2021,8.216,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2010,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2011,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2012,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2013,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2014,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2015,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2016,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2017,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2018,180.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2019,180.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2020,180.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Laos,2021,180.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2010,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2011,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2012,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2013,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2014,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2015,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2016,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2017,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2018,17.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2019,17.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2020,17.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Latvia,2021,17.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2010,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2011,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2012,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2013,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2014,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2015,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2016,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2017,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2018,1.421,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2019,1.421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2020,1.421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lebanon,2021,1.421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2010,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2011,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2012,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2013,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2014,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2015,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2016,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2017,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2018,1.315,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2019,1.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2020,1.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lesotho,2021,1.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2010,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2011,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2012,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2013,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2014,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2015,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2016,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2017,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2018,176.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2019,176.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2020,176.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Liberia,2021,176.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2010,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2011,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2012,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2013,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2014,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2015,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2016,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2017,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2018,10.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2019,10.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2020,10.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Lithuania,2021,10.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2010,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2011,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2012,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2013,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2014,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2015,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2016,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2017,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2018,2.294,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2019,2.294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2020,2.294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Luxembourg,2021,2.294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2010,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2011,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2012,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2013,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2014,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2015,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2016,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2017,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2018,217.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2019,217.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2020,217.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Madagascar,2021,217.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2010,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2011,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2012,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2013,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2014,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2015,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2016,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2017,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2018,9.529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2019,9.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2020,9.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malawi,2021,9.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2010,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2011,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2012,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2013,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2014,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2015,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2016,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2017,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2018,385.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2019,385.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2020,385.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Malaysia,2021,385.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2010,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2011,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2012,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2013,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2014,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2015,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2016,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2017,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2018,55.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2019,55.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2020,55.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mali,2021,55.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2010,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2011,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2012,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2013,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2014,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2015,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2016,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2017,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2018,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2019,1.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2020,1.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mauritania,2021,1.222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2010,195.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2011,195.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2012,195.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2013,195.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2014,195.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2015,195.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2016,195.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2017,195.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2018,262.08,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2019,262.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2020,262.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mexico,2021,262.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2010,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2011,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2012,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2013,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2014,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2015,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2016,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2017,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2018,21.18,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2019,21.18,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2020,21.18,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mongolia,2021,21.18,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2010,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2011,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2012,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2013,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2014,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2015,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2016,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2017,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2018,8.167,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2019,8.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2020,8.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Morocco,2021,8.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2010,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2011,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2012,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2013,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2014,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2015,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2016,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2017,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2018,133.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2019,133.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2020,133.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Mozambique,2021,133.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2010,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2011,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2012,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2013,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2014,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2015,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2016,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2017,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2018,595.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2019,595.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2020,595.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Myanmar,2021,595.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2010,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2011,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2012,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2013,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2014,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2015,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2016,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2017,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2018,7.19,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2019,7.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2020,7.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Namibia,2021,7.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2010,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2011,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2012,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2013,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2014,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2015,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2016,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2017,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2018,95.94,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2019,95.94,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2020,95.94,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nepal,2021,95.94,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2010,38.33,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2011,38.33,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2012,38.33,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2013,38.33,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2014,38.33,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2015,38.33,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2016,38.33,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2017,38.33,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2018,41.57,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2019,41.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2020,41.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Netherlands,2021,41.57,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2010,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2011,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2012,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2013,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2014,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2015,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2016,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2017,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2018,204.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2019,204.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2020,204.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,New Zealand,2021,204.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2010,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2011,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2012,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2013,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2014,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2015,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2016,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2017,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2018,107.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2019,107.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2020,107.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nicaragua,2021,107.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2010,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2011,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2012,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2013,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2014,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2015,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2016,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2017,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2018,10.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2019,10.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2020,10.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Niger,2021,10.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2010,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2011,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2012,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2013,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2014,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2015,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2016,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2017,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2018,157.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2019,157.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2020,157.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Nigeria,2021,157.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2010,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2011,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2012,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2013,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2014,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2015,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2016,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2017,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2018,2.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2019,2.268,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2020,2.268,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Macedonia,2021,2.268,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2010,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2011,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2012,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2013,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2014,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2015,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2016,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2017,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2018,261.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2019,261.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2020,261.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Norway,2021,261.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2010,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2011,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2012,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2013,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2014,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2015,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2016,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2017,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2018,83.79,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2019,83.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2020,83.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Pakistan,2021,83.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2010,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2011,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2012,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2013,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2014,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2015,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2016,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2017,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2018,0.1359,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2019,0.1359,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2020,0.1359,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Palestine,2021,0.1359,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2010,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2011,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2012,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2013,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2014,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2015,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2016,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2017,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2018,4.864,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2019,4.864,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2020,4.864,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Panama,2021,4.864,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2010,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2011,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2012,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2013,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2014,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2015,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2016,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2017,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2018,504.5,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2019,504.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2020,504.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Papua New Guinea,2021,504.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2010,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2011,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2012,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2013,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2014,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2015,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2016,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2017,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2018,256.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2019,256.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2020,256.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Paraguay,2021,256.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2010,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2011,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2012,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2013,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2014,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2015,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2016,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2017,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2018,1343.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2019,1343.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2020,1343.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Peru,2021,1343.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2010,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2011,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2012,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2013,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2014,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2015,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2016,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2017,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2018,151.9,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2019,151.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2020,151.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Philippines,2021,151.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2010,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2011,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2012,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2013,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2014,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2015,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2016,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2017,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2018,31.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2019,31.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2020,31.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Poland,2021,31.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2010,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2011,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2012,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2013,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2014,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2015,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2016,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2017,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2018,27.63,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2019,27.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2020,27.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Portugal,2021,27.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2010,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2011,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2012,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2013,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2014,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2015,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2016,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2017,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2018,2.621,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2019,2.621,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2020,2.621,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Puerto Rico,2021,2.621,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2010,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2011,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2012,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2013,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2014,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2015,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2016,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2017,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2018,35.44,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2019,35.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2020,35.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Korea,2021,35.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2010,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2011,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2012,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2013,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2014,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2015,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2016,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2017,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2018,5.536,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2019,5.536,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2020,5.536,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Moldova,2021,5.536,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2010,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2011,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2012,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2013,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2014,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2015,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2016,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2017,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2018,105.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2019,105.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2020,105.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Romania,2021,105.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2010,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2011,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2012,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2013,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2014,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2015,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2016,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2017,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2018,2953.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2019,2953.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2020,2953.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Russia,2021,2953.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2010,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2011,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2012,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2013,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2014,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2015,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2016,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2017,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2018,10.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2019,10.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2020,10.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Rwanda,2021,10.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2010,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2011,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2012,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2013,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2014,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2015,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2016,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2017,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2018,20.16,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2019,20.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2020,20.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Senegal,2021,20.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2010,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2011,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2012,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2013,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2014,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2015,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2016,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2017,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2018,73.47,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2019,73.47,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2020,73.47,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Serbia,2021,73.47,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2010,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2011,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2012,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2013,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2014,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2015,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2016,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2017,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2018,117.2,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2019,117.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2020,117.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sierra Leone,2021,117.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2010,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2011,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2012,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2013,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2014,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2015,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2016,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2017,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2018,26.86,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2019,26.86,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2020,26.86,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovakia,2021,26.86,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2010,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2011,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2012,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2013,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2014,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2015,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2016,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2017,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2018,17.08,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2019,17.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2020,17.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Slovenia,2021,17.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2010,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2011,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2012,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2013,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2014,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2015,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2016,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2017,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2018,1.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2019,1.254,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2020,1.254,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Somalia,2021,1.254,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2010,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2011,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2012,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2013,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2014,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2015,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2016,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2017,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2018,20.12,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2019,20.12,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2020,20.12,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Africa,2021,20.12,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2012,33.93,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2013,33.93,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2014,33.93,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2015,33.93,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2016,33.93,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2017,33.93,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2018,33.93,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2019,33.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2020,33.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,South Sudan,2021,33.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2010,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2011,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2012,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2013,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2014,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2015,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2016,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2017,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2018,38.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2019,38.15,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2020,44.408,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Spain,2021,44.408,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2010,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2011,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2012,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2013,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2014,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2015,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2016,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2017,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2018,38.54,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2019,38.54,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2020,38.54,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sri Lanka,2021,38.54,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2012,15.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2013,15.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2014,15.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2015,15.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2016,15.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2017,15.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2018,15.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2019,15.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2020,15.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sudan,2021,15.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2010,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2011,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2012,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2013,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2014,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2015,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2016,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2017,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2018,83.41,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2019,83.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2020,83.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Suriname,2021,83.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2010,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2011,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2012,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2013,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2014,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2015,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2016,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2017,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2018,104.7,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2019,104.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2020,104.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Sweden,2021,104.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2010,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2011,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2012,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2013,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2014,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2015,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2016,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2017,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2018,27.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2019,27.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2020,27.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Switzerland,2021,27.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2010,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2011,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2012,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2013,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2014,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2015,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2016,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2017,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2018,5.573,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2019,5.573,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2020,5.573,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Syria,2021,5.573,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2010,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2011,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2012,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2013,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2014,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2015,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2016,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2017,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2018,6.752,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2019,6.752,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2020,6.752,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tajikistan,2021,6.752,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2010,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2011,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2012,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2013,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2014,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2015,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2016,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2017,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2018,189.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2019,189.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2020,189.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Thailand,2021,189.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2010,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2011,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2012,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2013,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2014,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2015,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2016,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2017,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2018,4.069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2019,4.069,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2020,4.069,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,East Timor,2021,4.069,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2010,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2011,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2012,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2013,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2014,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2015,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2016,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2017,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2018,8.125,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2019,8.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2020,8.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Togo,2021,8.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2010,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2011,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2012,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2013,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2014,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2015,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2016,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2017,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2018,2.186,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2019,2.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2020,2.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Trinidad and Tobago,2021,2.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2010,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2011,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2012,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2013,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2014,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2015,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2016,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2017,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2018,0.6767,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2019,0.6767,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2020,0.6767,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Tunisia,2021,0.6767,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2010,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2011,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2012,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2013,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2014,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2015,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2016,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2017,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2018,5.355,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2019,5.355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2020,5.355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkmenistan,2021,5.355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2010,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2011,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2012,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2013,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2014,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2015,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2016,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2017,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2018,76.97,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2019,76.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2020,76.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Turkey,2021,76.97,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2010,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2011,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2012,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2013,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2014,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2015,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2016,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2017,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2018,49.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2019,49.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2020,49.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uganda,2021,49.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2010,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2011,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2012,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2013,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2014,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2015,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2016,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2017,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2018,98.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2019,98.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2020,98.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Ukraine,2021,98.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2010,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2011,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2012,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2013,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2014,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2015,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2016,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2017,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2018,88.35,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2019,88.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2020,88.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Kingdom,2021,88.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2010,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2011,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2012,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2013,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2014,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2015,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2016,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2017,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2018,56.28,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2019,56.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2020,56.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United Republic of Tanzania,2021,56.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2010,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2011,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2012,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2013,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2014,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2015,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2016,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2017,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2018,1491.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2019,1491.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2020,1491.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,United States of America,2021,1491.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2010,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2011,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2012,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2013,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2014,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2015,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2016,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2017,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2018,134.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2019,134.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2020,134.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uruguay,2021,134.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2010,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2011,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2012,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2013,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2014,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2015,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2016,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2017,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2018,14.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2019,14.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2020,14.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Uzbekistan,2021,14.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2010,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2011,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2012,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2013,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2014,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2015,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2016,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2017,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2018,1025.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2019,1025.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2020,1025.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Venezuela,2021,1025.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2010,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2011,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2012,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2013,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2014,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2015,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2016,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2017,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2018,432.6,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2019,432.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2020,432.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Vietnam,2021,432.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2010,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2011,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2012,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2013,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2014,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2015,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2016,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2017,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2018,49.36,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2019,49.36,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2020,49.36,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zambia,2021,49.36,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2010,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2011,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2012,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2013,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2014,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2015,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2016,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2017,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2018,9.348,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2019,9.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2020,9.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Environmental Flow Requirements,Zimbabwe,2021,9.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2010,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2011,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2012,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2013,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2014,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2015,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2016,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2017,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2018,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2019,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2020,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Afghanistan,2021,0.1695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2010,0.18105,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2011,0.1709,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2012,0.16075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2013,0.1506,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2014,0.14045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2015,0.1303,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2016,0.12015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2017,0.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2018,0.098,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2019,0.201,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2020,0.016,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Albania,2021,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2010,0.429166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2011,0.422083333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2012,0.415,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2013,0.317333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2014,0.219666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2015,0.122,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2016,0.188,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2017,0.191,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2018,0.191,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2019,0.191,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2020,0.191,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Algeria,2021,0.191,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2010,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2011,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2012,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2013,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2014,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2015,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2016,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2017,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2018,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2019,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2020,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Angola,2021,0.2396,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2010,0.0023,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2011,0.0024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2012,0.0025,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2013,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2014,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2015,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2016,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2017,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2018,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2019,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2020,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Antigua and Barbuda,2021,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2010,3.997727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2011,4.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2012,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2013,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2014,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2015,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2016,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2017,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2018,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2019,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2020,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Argentina,2021,4.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2010,0.17708,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2011,0.1901,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2012,0.2322,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2013,0.1234,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2014,0.1725,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2015,0.1094,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2016,0.1092,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2017,0.1224,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2018,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2019,0.116,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2020,0.186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Armenia,2021,0.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2010,2.573,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2011,2.726,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2012,2.688,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2013,2.519,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2014,2.663,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2015,2.768,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2016,3.56,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2017,2.716045,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2018,2.946491769,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2019,2.74,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2020,2.82,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Australia,2021,3.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2010,2.606818182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2011,2.562727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2012,2.518636364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2013,2.474545454,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2014,2.430454545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2015,2.386363636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2016,2.342272727,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2017,2.298181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2018,2.254090909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2019,2.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2020,2.21,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Austria,2021,2.21,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2010,0.488,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2011,0.529,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2012,0.632,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2013,0.651,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2014,0.672,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2015,0.581,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2016,0.642,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2017,0.563,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2018,0.507,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2019,0.567,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2020,0.566,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Azerbaijan,2021,0.598,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2010,0.019663636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2011,0.019572727,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2012,0.019481818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2013,0.019390909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2014,0.0193,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2015,0.0143,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2016,0.0141,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2017,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2018,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2019,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2020,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bahrain,2021,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2010,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2011,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2012,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2013,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2014,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2015,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2016,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2017,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2018,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2019,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2020,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bangladesh,2021,0.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2010,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2011,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2012,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2013,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2014,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2015,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2016,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2017,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2018,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2019,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2020,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Barbados,2021,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2010,0.4875,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2011,0.484333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2012,0.481166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2013,0.478,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2014,0.319,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2015,0.307,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2016,0.458,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2017,0.443,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2018,0.442,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2019,0.438,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2020,0.412,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belarus,2021,0.43,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2010,4.915,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2011,4.574,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2012,4.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2013,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2014,3.551,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2015,3.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2016,3.34,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2017,3.47,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2018,3.3875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2019,3.305,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2020,3.631,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belgium,2021,3.631,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2010,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2011,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2012,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2013,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2014,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2015,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2016,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2017,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2018,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2019,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2020,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Belize,2021,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2010,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2011,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2012,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2013,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2014,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2015,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2016,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2017,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2018,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2019,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2020,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Benin,2021,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2010,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2011,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2012,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2013,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2014,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2015,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2016,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bhutan,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2010,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2011,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2012,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2013,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2014,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2015,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2016,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2017,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2018,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2019,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2020,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bolivia,2021,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2010,0.0441,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2011,0.0588,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2012,0.0721,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2013,0.0752,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2014,0.0601,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2015,0.0599,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2016,0.0669,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2017,0.0718,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2018,0.078694,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2019,0.047896,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2020,0.064402,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bosnia and Herzegovina,2021,0.0599,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2010,0.033566667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2011,0.0325,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2012,0.0363,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2013,0.03355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2014,0.0308,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2015,0.0311,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2016,0.024,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2017,0.0234,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2018,0.0272,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2019,0.0282,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2020,0.0297566,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Botswana,2021,0.0275503,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2010,12.72,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2011,12.9025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2012,13.085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2013,13.2675,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2014,13.45,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2015,12.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2016,11.47,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2017,9.511,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2018,8.83,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2019,8.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2020,9.51,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Brazil,2021,9.78,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2010,4.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2011,4.405,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2012,3.817,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2013,3.701,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2014,3.762,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2015,3.901,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2016,3.887919,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2017,3.919,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2018,3.836,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2019,3.756,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2020,3.48,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Bulgaria,2021,3.48,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2010,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2011,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2012,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2013,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2014,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2015,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2016,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2017,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2018,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2019,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2020,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burkina Faso,2021,0.0217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2010,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2011,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2012,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2013,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2014,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2015,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2016,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2017,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2018,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2019,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2020,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Burundi,2021,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2010,0.001760535,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2011,0.001911706,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2012,0.002062876,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2013,0.002214047,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2014,0.002365217,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2015,0.002516388,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2016,0.002667558,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2017,0.002818729,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2018,0.002969899,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2019,0.00312107,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2020,0.00526262,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cape Verde,2021,0.00565432,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2010,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2011,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2012,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2013,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2014,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2015,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2016,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2017,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2018,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2019,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2020,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cambodia,2021,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2010,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2011,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2012,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2013,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2014,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2015,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2016,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2017,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2018,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2019,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2020,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cameroon,2021,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2010,30.500080671,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2011,29.900064537,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2012,29.300048403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2013,28.700032268,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2014,28.100016134,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2015,27.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2016,27.503,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2017,27.506,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2018,26.68,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2019,25.854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2020,25.028,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Canada,2021,25.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2010,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2011,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2012,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2013,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2014,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2015,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2016,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2017,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2018,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2019,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2020,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Central African Republic,2021,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2010,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2011,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2012,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2013,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2014,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2015,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2016,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2017,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2018,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2019,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2020,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chad,2021,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2010,3.5104,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2011,3.202,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2012,2.8936,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2013,2.5852,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2014,2.2768,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2015,1.9684,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2016,1.66,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2017,1.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2018,1.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2019,1.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2020,1.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Chile,2021,1.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2010,144.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2011,146.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2012,142.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2013,140.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2014,135.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2015,133.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2016,130.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2017,127.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2018,126.16,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2019,121.76,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2020,103.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,China,2021,103.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2010,2.614,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2011,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2012,2.986,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2013,3.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2014,3.358,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2015,3.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2016,3.73,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2017,2.060544418,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2018,0.391088836,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2019,0.304766803,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2020,0.295607078,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Colombia,2021,0.290187791,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2010,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2011,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2012,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2013,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2014,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2015,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2016,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2017,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2018,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2019,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2020,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Comoros,2021,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2010,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2011,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2012,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2013,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2014,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2015,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2016,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2017,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2018,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2019,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2020,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Republic of Congo,2021,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2012,0.086,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2013,0.139,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2014,0.174,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2015,0.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2016,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2017,0.22,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2018,0.22887,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2019,0.22916,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2020,0.23284,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Costa Rica,2021,0.24534,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2010,0.51464952,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2011,0.54256708,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2012,0.57877462,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2013,0.54738592,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2014,0.57877692,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2015,0.54878372,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2016,0.56265022,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2017,0.469516,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2018,0.46852,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2019,0.483,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2020,0.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Croatia,2021,0.486,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2010,0.75035,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2011,0.7469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2012,0.74345,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2013,0.74,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2014,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2015,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2016,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2017,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2018,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2019,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2020,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cuba,2021,0.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2010,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2011,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2012,0.0042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2013,0.0036,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2014,0.003,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2015,0.006,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2016,0.004,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2017,0.017,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2018,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2019,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2020,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Cyprus,2021,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2010,1.120252941,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2011,1.089964706,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2012,1.059676471,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2013,1.029388235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2014,0.9991,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2015,0.9361,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2016,0.9818,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2017,0.9672,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2018,0.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2019,0.818,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2020,0.698,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Czech Republic,2021,0.685,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2010,0.275777778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2011,0.267333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2012,0.258888889,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2013,0.250444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2014,0.242,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2015,0.242,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2016,0.242,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2017,0.242,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2018,0.242,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2019,0.242,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2020,0.242,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ivory Coast,2021,0.242,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2010,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2011,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2012,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2013,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2014,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2015,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2016,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2017,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2018,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2019,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2020,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,North Korea,2021,1.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2010,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2011,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2012,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2013,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2014,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2015,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2016,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2017,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2018,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2019,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2020,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Democratic Republic of the Congo,2021,0.1468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2010,0.066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2011,0.097,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2012,0.128,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2013,0.096966667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2014,0.065933333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2015,0.0349,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2016,0.038534,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2017,0.03498,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2018,0.04777,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2019,0.051756,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2020,0.048975,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Denmark,2021,0.048975,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Djibouti,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2010,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominica,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2010,0.586,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2011,0.60078,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2012,0.61556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2013,0.63034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2014,0.64512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2015,0.6599,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2016,0.6599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2017,0.6599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2018,0.6599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2019,0.6599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2020,0.6599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Dominican Republic,2021,0.6599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2010,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2011,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2012,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2013,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2014,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2015,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2016,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2017,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2018,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2019,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2020,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ecuador,2021,0.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2010,2.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2011,1.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2012,1.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2013,1.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2014,1.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2015,1.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2016,1.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2017,5.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2018,5.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2019,5.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2020,5.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Egypt,2021,5.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2010,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2011,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2012,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2013,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2014,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2015,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2016,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2017,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2018,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2019,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2020,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,El Salvador,2021,0.213,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2010,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2011,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2012,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2013,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2014,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2015,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2016,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Equatorial Guinea,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2010,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2011,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2012,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2013,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2014,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2015,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2016,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2017,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2018,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2019,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2020,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eritrea,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2010,1.777,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2011,1.809,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2012,1.565,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2013,1.68,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2014,1.655,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2015,1.517,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2016,1.686,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2017,1.721,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2018,1.5417,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2019,0.92334,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2020,0.785153507,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Estonia,2021,0.922698327,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2010,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2011,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2012,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2013,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2014,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2015,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2016,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2017,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2018,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2019,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2020,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Eswatini,2021,0.0207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2010,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2011,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2012,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2013,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2014,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2015,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2016,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2017,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2018,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2019,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2020,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ethiopia,2021,0.0511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2010,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2011,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2012,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2013,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2014,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2015,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2016,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2017,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2018,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2019,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2020,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Fiji,2021,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2010,1.697529002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2011,1.678023202,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2012,1.658517401,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2013,1.639011601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2014,1.619505801,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2015,1.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2016,1.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2017,1.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2018,2.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2019,2.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2020,2.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Finland,2021,2.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2010,19.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2011,21.62,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2012,19.77,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2013,18.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2014,19.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2015,19.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2016,18.151,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2017,18.612,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2018,18.61986962,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2019,17.71974359,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2020,15.87301555,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,France,2021,15.87301555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2010,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2011,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2012,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2013,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2014,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2015,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2016,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2017,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2018,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2019,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2020,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gabon,2021,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2010,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2011,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2012,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2013,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2014,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2015,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2016,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2017,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2018,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2019,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2020,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Gambia,2021,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2010,0.351967216,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2011,0.32684768,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2012,0.301728144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2013,0.276608608,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2014,0.251489072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2015,0.226369536,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2016,0.20125,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2017,0.20682,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2018,0.21017,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2019,0.32576,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2020,0.3396,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Georgia,2021,0.32484,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2010,27.438536,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2011,24.776617,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2012,21.969782,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2013,19.675401,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2014,19.61784,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2015,18.170501,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2016,18.555508,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2017,16.307313,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2018,15.223871,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2019,14.005279,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2020,14.005279,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Germany,2021,14.005279,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2010,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2011,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2012,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2013,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2014,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2015,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2016,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2017,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2018,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2019,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2020,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ghana,2021,0.095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2010,0.175875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2011,0.126,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2012,0.126,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2013,0.126,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2014,0.126,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2015,0.126,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2016,0.341,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2017,0.34,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2018,0.328,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2019,0.321,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2020,0.328,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Greece,2021,0.293,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Grenada,2014,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Grenada,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Grenada,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Grenada,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Grenada,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Grenada,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Grenada,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Grenada,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2010,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2011,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2012,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2013,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2014,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2015,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2016,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2017,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2018,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2019,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2020,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guatemala,2021,0.6031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2010,0.057661538,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2011,0.057953846,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2012,0.058246154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2013,0.058538461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2014,0.058830769,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2015,0.059123077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2016,0.059415385,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2017,0.059707692,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2018,0.06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2019,0.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2020,0.06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea,2021,0.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2010,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2011,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2012,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2013,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2014,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2015,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2016,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2017,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2018,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2019,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2020,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guinea Bissau,2021,0.0119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2010,0.0204,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2011,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2012,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2013,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2014,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2015,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2016,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2017,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2018,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2019,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2020,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Guyana,2021,0.0204,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2010,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2011,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2012,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2013,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2014,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2015,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2016,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2017,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2018,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2019,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2020,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Haiti,2021,0.051,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2010,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2011,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2012,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2013,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2014,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2015,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2016,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2017,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2018,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2019,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2020,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Honduras,2021,0.114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2010,4.2022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2011,4.1076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2012,4.013,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2013,3.601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2014,3.189,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2015,3.157,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2016,3.32,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2017,3.358,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2018,3.54,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2019,3.22,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2020,3.4525,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Hungary,2021,3.4525,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2010,0.1775,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2011,0.203,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2012,0.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2013,0.205,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2014,0.199,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2015,0.198,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2016,0.198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2017,0.198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2018,0.198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2019,0.198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2020,0.198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iceland,2021,0.198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2010,17.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2011,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2012,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2013,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2014,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2015,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2016,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2017,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2018,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2019,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2020,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,India,2021,17.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2010,17.597727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2011,16.187272727,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2012,14.776818182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2013,13.366363636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2014,11.955909091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2015,10.545454546,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2016,9.135,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2017,9.135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2018,9.135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2019,9.135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2020,9.135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Indonesia,2021,9.135,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2010,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2011,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2012,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2013,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2014,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2015,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2016,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2017,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2018,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2019,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2020,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iran,2021,1.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2010,4.271428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2011,3.728571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2012,3.185714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2013,2.642857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2014,2.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2015,1.86,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2016,2.05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2017,4.71,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2018,5.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2019,5.49,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2020,3.841,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Iraq,2021,4.52,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2010,0.176672727,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2011,0.218563636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2012,0.260454546,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2013,0.302345454,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2014,0.344236364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2015,0.386127273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2016,0.428018182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2017,0.469909091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2018,0.5118,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2019,0.5154,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2020,0.5174,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ireland,2021,0.528,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2010,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2011,0.1266,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2012,0.1232,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2013,0.1198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2014,0.1164,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2015,0.113,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2016,0.054,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2017,0.104834294,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2018,0.104834294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2019,0.104834294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2020,0.104834294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Israel,2021,0.104834294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2010,9.682307692,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2011,9.021538462,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2012,8.360769231,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2013,7.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2014,7.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2015,7.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2016,7.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2017,7.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2018,7.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2019,7.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2020,7.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Italy,2021,7.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2010,0.567111111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2011,0.665333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2012,0.763555556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2013,0.861777778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2014,0.96,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2015,0.48,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2016,1.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2017,0.833467925,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2018,0.56693585,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2019,0.300403775,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2020,0.033871699,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jamaica,2021,0.043988887,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2010,11.551428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2011,11.492857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2012,11.434285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2013,11.375714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2014,11.317142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2015,11.258571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2016,11.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2017,11.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2018,10.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2019,10.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2020,10.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Japan,2021,10.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2010,0.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2011,0.0402,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2012,0.033,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2013,0.039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2014,0.0517,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2015,0.0372,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2016,0.0325,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2017,0.0321,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2018,0.0345,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2019,0.03688,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2020,0.03688,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Jordan,2021,0.03688,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2010,6.722,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2011,6.317,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2012,6.417,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2013,6.553,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2014,7.384,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2015,6.12,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2016,6.984,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2017,6.984,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2018,4.938,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2019,3.999,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2020,4.5419,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kazakhstan,2021,4.5419,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2010,0.125,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2011,0.125015538,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2012,0.125031075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2013,0.125046613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2014,0.12506215,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2015,0.125077688,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2016,0.303,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2017,0.303,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2018,0.303,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2019,0.303,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2020,0.303,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kenya,2021,0.303,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2010,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2011,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2012,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2013,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2014,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2015,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2016,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2017,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2018,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2019,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2020,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kuwait,2021,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2010,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2011,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2012,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2013,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2014,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2015,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2016,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2017,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2018,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2019,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2020,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Kyrgyzstan,2021,0.336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2010,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2011,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2012,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2013,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2014,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2015,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2016,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2017,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2018,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2019,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2020,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Laos,2021,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2010,0.05082,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2011,0.05356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2012,0.0563,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2013,0.0522,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2014,0.0367,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2015,0.035,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2016,0.034586665,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2017,0.035592291,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2018,0.03943,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2019,0.036458,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2020,0.037211,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Latvia,2021,0.037211,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2010,0.525,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2011,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2012,0.675,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2013,0.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2014,0.825,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2015,0.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2016,0.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2017,0.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2018,0.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2019,0.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2020,0.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lebanon,2021,0.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2010,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2011,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2012,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2013,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2014,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2015,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2016,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2017,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2018,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2019,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2020,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lesotho,2021,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2010,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2011,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2012,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2013,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2014,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2015,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2016,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2017,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2018,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2019,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2020,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Liberia,2021,0.0534,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2010,0.242448187,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2011,0.261224093,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2012,0.28,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2013,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2014,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2015,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2016,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2017,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2018,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2019,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2020,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Libya,2021,0.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2010,0.898146154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2011,0.715384615,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2012,0.532623077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2013,0.349861539,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2014,0.1671,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2015,0.189,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2016,0.1167,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2017,0.0697,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2018,0.06037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2019,0.06037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2020,0.06037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Lithuania,2021,0.06037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2010,0.0029,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2011,0.0036,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2012,0.0037,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2013,0.002,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2014,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2015,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2016,0.0013,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2017,0.0016,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2018,0.0019,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2019,0.0044,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Luxembourg,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2010,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2011,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2012,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2013,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2014,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2015,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2016,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2017,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2018,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2019,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2020,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Madagascar,2021,0.1619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2010,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2011,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2012,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2013,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2014,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2015,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2016,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2017,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2018,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2019,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2020,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malawi,2021,0.0477,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2010,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2011,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2012,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2013,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2014,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2015,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2016,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2017,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2018,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2019,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2020,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malaysia,2021,1.641,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2010,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2011,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2012,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2013,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2014,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2015,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2016,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2017,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2018,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2019,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2020,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Maldives,2021,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2010,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2011,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2012,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2013,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2014,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2015,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2016,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2017,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2018,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2019,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2020,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mali,2021,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2010,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2011,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2012,0.001,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2013,0.001,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2014,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2015,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2016,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2017,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2018,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2019,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2020,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Malta,2021,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2010,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2011,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2012,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2013,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2014,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2015,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2016,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2017,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2018,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2019,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2020,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritania,2021,0.0318,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2010,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2011,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2012,0.011,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2013,0.013,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2014,0.013,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2015,0.014,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2016,0.012,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2017,0.012,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2018,0.011,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2019,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2020,0.009,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mauritius,2021,0.009,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2010,7.34,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2011,7.28,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2012,7.403,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2013,7.867,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2014,7.722,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2015,7.825,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2016,7.951,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2017,6.814,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2018,8.482,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2019,8.553,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2020,8.555,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mexico,2021,8.586,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Monaco,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2010,0.213333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2011,0.188666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2012,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2013,0.139333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2014,0.114666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2015,0.09,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2016,0.1662,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2017,0.1662,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2018,0.1662,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2019,0.1662,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2020,0.1662,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mongolia,2021,0.1662,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2010,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2011,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2012,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2013,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2014,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2015,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2016,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2017,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2018,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2019,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2020,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Montenegro,2021,0.0628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2010,0.212,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2011,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2012,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2013,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2014,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2015,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2016,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2017,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2018,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2019,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2020,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Morocco,2021,0.212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2010,0.0306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2011,0.02948,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2012,0.02836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2013,0.02724,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2014,0.02612,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2015,0.025,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2016,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2017,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2018,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2019,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2020,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Mozambique,2021,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2010,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2011,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2012,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2013,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2014,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2015,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2016,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2017,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2018,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2019,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2020,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Myanmar,2021,0.4984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2010,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2011,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2012,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2013,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2014,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2015,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2016,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2017,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2018,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2019,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2020,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Namibia,2021,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2010,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2011,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2012,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2013,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2014,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2015,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2016,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2017,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2018,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2019,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2020,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nepal,2021,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2010,9.582,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2011,9.514,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2012,9.446,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2013,8.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2014,7.612,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2015,7.0677,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2016,6.1302,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2017,6.1081,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2018,5.8292,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2019,6.1835,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2020,5.9441,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Netherlands,2021,5.9441,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2010,1.184,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2011,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2012,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2013,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2014,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2015,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2016,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2017,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2018,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2019,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2020,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,New Zealand,2021,1.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2010,0.060330909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2011,0.053696364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2012,0.047061818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2013,0.040427273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2014,0.033792727,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2015,0.027158182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2016,0.020523636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2017,0.013889091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2018,0.007254546,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2019,0.00062,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2020,0.00062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nicaragua,2021,0.00062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2010,0.019128571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2011,0.016414286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2012,0.0137,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2013,0.02285,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2014,0.032,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2015,0.0334,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2016,0.0347,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2017,0.036006,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2018,0.03733,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2019,0.0386538,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2020,0.0386538,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Niger,2021,0.0386538,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2010,1.965,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2011,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2012,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2013,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2014,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2015,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2016,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2017,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2018,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2019,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2020,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Nigeria,2021,1.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2010,0.15315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2011,0.137766667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2012,0.122383333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2013,0.107,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2014,0.078769667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2015,0.050539333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2016,0.022309,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2017,0.0218945,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2018,0.02148,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2019,0.02471,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2020,0.024405448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Macedonia,2021,0.024100895,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2010,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2011,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2012,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2013,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2014,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2015,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2016,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2017,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2018,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2019,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2020,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Norway,2021,1.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2010,0.1002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2011,0.1118,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2012,0.1234,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2013,0.135,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2014,0.169333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2015,0.203666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2016,0.238,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2017,0.238,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2018,0.238,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2019,0.238,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2020,0.238,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Oman,2021,0.238,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2010,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2011,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2012,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2013,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2014,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2015,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2016,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2017,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2018,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2019,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2020,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Pakistan,2021,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2010,0.022971053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2011,0.022471531,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2012,0.024226794,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2013,0.025371531,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2014,0.023775837,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2015,0.02534378,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2016,0.025225837,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2017,0.032,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2018,0.0321,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2019,0.0341,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2020,0.0349,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Palestine,2021,0.039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2010,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2011,0.0096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2012,0.0092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2013,0.0088,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2014,0.0065,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2015,0.0064,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2016,0.0062,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2017,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2018,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2019,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2020,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Panama,2021,0.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2010,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2011,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2012,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2013,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2014,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2015,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2016,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2017,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2018,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2019,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2020,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Papua New Guinea,2021,0.1676,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2010,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2011,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2012,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2013,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2014,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2015,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2016,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2017,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2018,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2019,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2020,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Paraguay,2021,0.154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2010,0.916,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2011,1.2295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2012,1.543,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2013,1.8565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2014,2.17,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2015,2.4835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2016,2.797,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2017,3.1105,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2018,3.424,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2019,3.51,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2020,3.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Peru,2021,3.51,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2010,8.267,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2011,8.959,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2012,9.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2013,9.054,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2014,9.008,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2015,9.931,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2016,10.56,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2017,15.91553,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2018,16.18880503,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2019,9.880981984,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2020,10.63361498,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Philippines,2021,11.96505405,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2010,7.651,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2011,7.6495,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2012,7.648,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2013,7.6465,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2014,7.645,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2015,7.463,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2016,7.483,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2017,7.035,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2018,6.513,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2019,6.34,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2020,5.867969,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Poland,2021,6.334,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2010,1.707126316,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2011,1.724636842,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2012,1.742147368,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2013,1.759657895,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2014,1.777168421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2015,1.794678947,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2016,1.812189474,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2017,1.8297,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2018,1.82966,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2019,1.82966,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2020,1.82966,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Portugal,2021,1.82966,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2010,3.15,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2011,2.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2012,2.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2013,2.679,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2014,2.522,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2015,2.365,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2016,2.365,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2017,2.365,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2018,2.365,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2019,2.365,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2020,2.365,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Puerto Rico,2021,2.365,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2010,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2011,0.0164,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2012,0.0178,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2013,0.0192,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2014,0.0854,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2015,0.11455,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2016,0.1437,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2017,0.034,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2018,0.0356,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2019,0.044,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2020,0.039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Qatar,2021,0.04018,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2010,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2011,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2012,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2013,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2014,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2015,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2016,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2017,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2018,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2019,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2020,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Korea,2021,4.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2010,0.753333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2011,0.7275,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2012,0.701666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2013,0.675833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2014,0.65,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2015,0.649,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2016,0.652,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2017,0.583,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2018,0.582,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2019,0.582,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2020,0.583,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Moldova,2021,0.583,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2010,4.43,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2011,4.383,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2012,4.336,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2013,4.303,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2014,4.172,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2015,4.174,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2016,4.08,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2017,4.234,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2018,3.904,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2019,4.225,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2020,4.038,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Romania,2021,4.114,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2010,37.267069486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2011,37.007854985,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2012,36.748640483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2013,36.489425982,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2014,34.79,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2015,28.58,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2016,28.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2017,28.06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2018,29.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2019,29.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2020,29.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Russia,2021,29.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2010,0.01675,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2011,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2012,0.01525,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2013,0.0145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2014,0.01375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2015,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2016,0.01225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2017,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2018,0.01075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2019,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2020,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Rwanda,2021,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2012,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Kitts and Nevis,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Lucia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2013,2e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2014,2e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2015,2e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2016,2e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2017,2e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2018,2e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2019,2e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2020,2e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saint Vincent and the Grenadines,2021,2e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sao Tome and Principe,2016,0.0006,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sao Tome and Principe,2017,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sao Tome and Principe,2018,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sao Tome and Principe,2019,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sao Tome and Principe,2020,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sao Tome and Principe,2021,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2010,0.798666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2011,0.820833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2012,0.843,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2013,0.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2014,0.93,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2015,0.977,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2016,1.015,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2017,1.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2018,1.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2019,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2020,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Saudi Arabia,2021,1.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2010,0.027986059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2011,0.024234317,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2012,0.020482574,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2013,0.016730831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2014,0.012979089,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2015,0.009227346,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2016,0.005475604,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2017,0.001723861,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2018,0.001415764,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2019,0.001415764,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2020,0.001415764,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Senegal,2021,0.001415764,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2012,3.097,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2013,2.8875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2014,2.678,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2015,3.307,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2016,3.41,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2017,4.057,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2018,4.1913,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2019,4.2413,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2020,3.9867,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Serbia,2021,3.731,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2010,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2011,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2012,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2013,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2014,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2015,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2016,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2017,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2018,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2019,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2020,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Seychelles,2021,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2010,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2011,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2012,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2013,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2014,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2015,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2016,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2017,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2018,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2019,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2020,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sierra Leone,2021,0.0555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2010,0.7799475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2011,0.691737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2012,0.6035265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2013,0.515316,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2014,0.4271055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2015,0.338895,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2016,0.338946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2017,0.336294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2018,0.334866,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2019,0.338436,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2020,0.3366,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Singapore,2021,0.3366,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2010,0.254,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2011,0.2478,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2012,0.3288,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2013,0.1836,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2014,0.2315,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2015,0.2335,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2016,0.2279,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2017,0.2312,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2018,0.2384,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2019,0.2371235,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2020,0.2324,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovakia,2021,0.2372928,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2010,0.771366667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2011,0.767733333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2012,0.7641,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2013,0.988,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2014,0.8156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2015,0.7292,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2016,0.7222,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2017,0.758,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2018,0.787,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2019,0.771,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2020,0.831,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Slovenia,2021,0.755,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2010,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2011,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2012,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2013,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2014,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2015,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2016,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2017,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2018,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2019,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2020,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Somalia,2021,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2010,1.492769231,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2011,1.536846154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2012,1.580923077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2013,1.625,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2014,2.6075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2015,3.59,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2016,3.94,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2017,4.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2018,4.07,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2019,4.25,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2020,4.09,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Africa,2021,4.164,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2012,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2013,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2014,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2015,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2016,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2017,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2018,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2019,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2020,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,South Sudan,2021,0.225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2010,6.814,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2011,6.693,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2012,6.572,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2013,6.4555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2014,6.339,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2015,6.057,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2016,5.966,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2017,5.591,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2018,5.717,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2019,5.6085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2020,5.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Spain,2021,5.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2010,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2011,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2012,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2013,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2014,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2015,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2016,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2017,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2018,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2019,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2020,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sri Lanka,2021,0.831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2012,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2013,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2014,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2015,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2016,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2017,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2018,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2019,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2020,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sudan,2021,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2010,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2011,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2012,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2013,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2014,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2015,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2016,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2017,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2018,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2019,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2020,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Suriname,2021,0.1355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2010,1.572,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2011,1.5266,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2012,1.4812,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2013,1.4358,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2014,1.3904,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2015,1.345,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2016,1.3294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2017,1.3138,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2018,1.2982,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2019,1.2826,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2020,1.267,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Sweden,2021,1.267,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2012,0.6427,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2013,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2014,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2015,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2016,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2017,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2018,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2019,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2020,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Switzerland,2021,0.6427,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2010,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2011,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2012,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2013,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2014,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2015,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2016,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2017,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2018,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2019,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2020,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Syria,2021,0.6154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2010,0.388333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2011,0.383466667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2012,0.3786,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2013,0.373733333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2014,0.368866667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2015,0.364,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2016,0.339,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2017,2.084,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2018,1.61,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2019,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2020,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tajikistan,2021,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2010,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2011,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2012,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2013,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2014,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2015,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2016,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2017,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2018,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2019,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2020,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Thailand,2021,2.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2010,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2011,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2012,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2013,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2014,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2015,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2016,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2017,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2018,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2019,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2020,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,East Timor,2021,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2010,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2011,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2012,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2013,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2014,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2015,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2016,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2017,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2018,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2019,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2020,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Togo,2021,0.0063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2010,0.12675,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2011,0.1289,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2012,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2013,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2014,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2015,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2016,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2017,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2018,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2019,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2020,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Trinidad and Tobago,2021,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2010,0.160375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2011,0.165,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2012,0.1464,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2013,0.1278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2014,0.1092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2015,0.0906,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2016,0.072,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2017,0.09,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2018,0.04588,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2019,0.0678,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2020,0.0619,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Tunisia,2021,0.0619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2010,0.841456613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2011,0.841866048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2012,0.842275484,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2013,0.842684919,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2014,0.843094354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2015,0.84350379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2016,0.843913225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2017,0.866078264,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2018,0.8067654,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2019,0.8067654,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2020,0.8067654,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkmenistan,2021,0.8067654,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2010,1.557,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2011,1.6745,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2012,1.792,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2013,2.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2014,2.356,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2015,1.678,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2016,1.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2017,1.047676149,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2018,1.095352298,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2019,1.131676149,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2020,1.168,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Turkey,2021,1.168,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2010,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2011,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2012,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2013,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2014,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2015,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2016,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2017,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2018,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2019,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2020,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uganda,2021,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2010,7.126,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2011,6.5765,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2012,6.027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2013,5.4775,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2014,4.928,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2015,4.162,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2016,4.273,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2017,4.087,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2018,4.087,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2019,4.277,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2020,4.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Ukraine,2021,4.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2010,0.054454545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2011,0.051545454,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2012,0.048636364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2013,0.045727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2014,0.042818182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2015,0.039909091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2016,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2017,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2018,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2019,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2020,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Arab Emirates,2021,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2010,0.8894,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2011,0.6722,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2012,1.122,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2013,0.9856,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2014,0.8492,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2015,0.9385,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2016,1.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2017,1.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2018,1.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2019,1.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2020,1.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Kingdom,2021,1.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2010,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2011,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2012,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2013,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2014,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2015,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2016,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2017,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2018,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2019,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2020,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United Republic of Tanzania,2021,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2010,248.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2011,240.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2012,232.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2013,225.18,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2014,217.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2015,209.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2016,209.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2017,209.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2018,209.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2019,209.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2020,209.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,United States of America,2021,209.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2010,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2011,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2012,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2013,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2014,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2015,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2016,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2017,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2018,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2019,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2020,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uruguay,2021,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2010,1.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2011,1.86,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2012,1.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2013,1.98,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2014,2.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2015,1.959,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2016,2.114,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2017,2.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2018,1.985,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2019,1.84,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2020,1.781,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Uzbekistan,2021,1.808,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2010,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2011,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2012,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2013,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2014,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2015,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2016,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2017,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2018,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2019,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2020,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Venezuela,2021,0.7933,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2010,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2011,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2012,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2013,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2014,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2015,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2016,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2017,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2018,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2019,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2020,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Vietnam,2021,3.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2010,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2011,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2012,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2013,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2014,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2015,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2016,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2017,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2018,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2019,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2020,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Yemen,2021,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2010,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2011,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2012,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2013,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2014,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2015,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2016,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2017,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2018,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2019,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2020,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zambia,2021,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2010,0.1649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2011,0.1482,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2012,0.1315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2013,0.1148,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2014,0.0981,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2015,0.0814,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2016,0.0814,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2017,0.0814,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2018,0.081352,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2019,0.081352,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2020,0.081352,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Industrial water withdrawal,Zimbabwe,2021,0.081352,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2010,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2011,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2012,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2013,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2014,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2015,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2016,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2017,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2018,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2019,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2020,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Afghanistan,2021,0.831987591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2010,15.425577234,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2011,14.873544412,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2012,14.297276625,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2013,13.695142135,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2014,13.065359356,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2015,14.163043478,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2016,13.232378855,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2017,10.073260073,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2018,10.229645094,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2019,17.771883289,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2020,2.03562341,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Albania,2021,1.256281407,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2010,5.396882859,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2011,5.154548566,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2012,4.925816024,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2013,3.621975346,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2014,2.414538526,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2015,1.293194827,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2016,1.884145119,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2017,1.825654751,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2018,1.825654751,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2019,1.825654751,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2020,1.825654751,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Algeria,2021,1.825654751,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2010,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2011,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2012,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2013,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2014,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2015,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2016,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2017,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2018,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2019,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2020,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Angola,2021,33.947293851,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2010,21.668909825,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2011,21.705426357,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2012,21.739130435,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2013,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2014,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2015,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2016,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2017,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2018,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2019,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2020,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Antigua and Barbuda,2021,21.739130435,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2010,10.771371666,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2011,10.587612493,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2012,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2013,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2014,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2015,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2016,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2017,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2018,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2019,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2020,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Argentina,2021,10.587612493,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2010,8.938919737,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2011,7.797374898,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2012,7.895273716,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2013,4.176679641,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2014,6.032523168,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2015,3.345565749,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2016,3.433962264,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2017,4.264808362,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2018,4.789977892,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2019,4.048865619,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2020,6.5747614,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Armenia,2021,3.707448601,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2010,18.822238478,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2011,20.440911818,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2012,16.780073663,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2013,12.755722098,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2014,14.286480687,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2015,15.972302366,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2016,20.92490428,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2017,15.593054431,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2018,16.487061535,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2019,17.474489796,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2020,20.689655172,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Australia,2021,18.137847642,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2010,76.582868406,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2011,75.941796813,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2012,75.289486104,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2013,74.625638101,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2014,73.949943988,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2015,73.262083825,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2016,72.561726048,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2017,71.848526935,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2018,71.12213004,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2019,70.382165605,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2020,70.382165605,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Austria,2021,70.382165605,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2010,4.448495898,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2011,4.683073654,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2012,5.277661795,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2013,5.427713857,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2014,5.797101449,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2015,4.970485071,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2016,5.404950328,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2017,4.645214521,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2018,4.167009123,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2019,4.503574265,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2020,4.637823664,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Azerbaijan,2021,4.611351018,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2010,4.882838954,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2011,4.783381471,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2012,4.687021565,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2013,4.593616746,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2014,4.503033131,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2015,3.33100396,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2016,3.245856354,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2017,3.245856354,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2018,3.245856354,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2019,3.245856354,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2020,3.245856354,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bahrain,2021,3.245856354,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2010,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2011,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2012,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2013,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2014,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2015,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2016,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2017,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2018,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2019,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2020,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bangladesh,2021,2.146640647,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2010,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2011,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2012,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2013,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2014,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2015,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2016,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2017,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2018,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2019,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2020,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Barbados,2021,7.654320988,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2010,31.492248062,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2011,31.518438178,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2012,31.545412498,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2013,31.571994716,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2014,20.305537874,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2015,21.216309606,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2016,31.542699725,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2017,31.710808876,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2018,31.775700935,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2019,32.253313697,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2020,31.000752445,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belarus,2021,30.175438597,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2010,86.74549947,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2011,85.816135084,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2012,84.761714057,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2013,83.447684391,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2014,82.351576994,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2015,80.370555834,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2016,80.982228837,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2017,79.005835196,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2018,81.024699849,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2019,80.639258265,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2020,82.127024337,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belgium,2021,82.127024337,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2010,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2011,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2012,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2013,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2014,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2015,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2016,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2017,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2018,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2019,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2020,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Belize,2021,20.99009901,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2010,14.393420151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2011,13.815789474,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2012,13.282732448,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2013,12.789281364,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2014,12.33118027,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2015,11.904761905,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2016,12.552301255,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2017,12.82051282,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2018,12.82051282,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2019,12.82051282,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2020,12.82051282,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Benin,2021,12.82051282,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2010,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2011,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2012,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2013,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2014,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2015,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2016,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2017,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2018,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2019,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2020,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bhutan,2021,0.887573965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2010,1.524080636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2011,1.51568769,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2012,1.507386675,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2013,1.49917609,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2014,1.491054465,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2015,1.483020362,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2016,1.475072374,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2017,1.467209123,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2018,1.459429262,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2019,1.451731471,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2020,1.448526235,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bolivia,2021,1.451306337,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2010,16.922818382,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2011,16.480730223,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2012,18.68244982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2013,17.556253271,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2014,16.391697712,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2015,16.560170394,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2016,11.922503726,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2017,12.124352332,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2018,13.333333333,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2019,13.961087183,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2020,13.499489175,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Botswana,2021,11.792707435,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2010,16.998530001,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2011,17.826056922,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2012,18.711568712,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2013,19.66138115,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2014,20.682761802,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2015,20.185727485,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2016,17.297541849,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2017,14.480816078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2018,13.278195489,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2019,13.048635824,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2020,14.151785714,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Brazil,2021,14.52978755,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2010,68.392704331,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2011,68.988739409,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2012,66.789151356,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2013,67.684711046,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2014,69.980282004,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2015,69.296905532,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2016,68.33784417,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2017,69.264757865,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2018,70.709677419,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2019,69.273330874,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2020,68.544415994,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Bulgaria,2021,70.034212115,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2010,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2011,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2012,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2013,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2014,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2015,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2016,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2017,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2018,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2019,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2020,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burkina Faso,2021,2.652811736,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2010,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2011,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2012,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2013,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2014,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2015,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2016,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2017,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2018,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2019,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2020,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Burundi,2021,5.355230275,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2010,1.319592633,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2011,1.303381135,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2012,1.289857404,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2013,1.278404187,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2014,1.268579795,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2015,1.260059829,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2016,1.25260067,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2017,1.246015811,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2018,1.240160045,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2019,1.234918632,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2020,1.796251281,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cape Verde,2021,2.200550496,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2010,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2011,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2012,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2013,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2014,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2015,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2016,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2017,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2018,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2019,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2020,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cambodia,2021,1.510989011,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2010,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2011,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2012,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2013,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2014,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2015,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2016,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2017,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2018,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2019,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2020,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cameroon,2021,9.610437339,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2010,75.177348264,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2011,75.982860664,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2012,76.534306837,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2013,77.117388714,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2014,77.650059705,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2015,78.213879408,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2016,77.025191492,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2017,75.872341599,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2018,75.333182742,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2019,74.767922728,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2020,74.150445886,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Canada,2021,74.150445886,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2010,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2011,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2012,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2013,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2014,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2015,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2016,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2017,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2018,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2019,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2020,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Central African Republic,2021,16.551724138,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2010,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2011,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2012,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2013,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2014,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2015,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2016,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2017,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2018,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2019,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2020,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chad,2021,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2010,10.262347032,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2011,9.445288418,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2012,8.613340319,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2013,7.76609199,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2014,6.903117439,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2015,6.023974709,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2016,5.128205128,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2017,5.128205128,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2018,5.128205128,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2019,5.128205128,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2020,5.128205128,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Chile,2021,5.128205128,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2010,24.517112843,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2011,24.382921948,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2012,23.603514006,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2013,23.132228822,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2014,22.630173565,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2015,22.32068216,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2016,21.654912089,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2017,21.13048946,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2018,20.97248774,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2019,20.221882681,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2020,17.726091968,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,China,2021,17.726091968,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2010,16.298100797,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2011,15.406185859,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2012,14.701858658,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2013,14.131570175,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2014,13.660382073,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2015,13.264527961,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2016,13.321428571,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2017,7.438022366,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2018,1.440797156,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2019,1.204262956,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2020,1.142545198,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Colombia,2021,1.09382679,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2010,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2011,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2012,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2013,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2014,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2015,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2016,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2017,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2018,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2019,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2020,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Comoros,2021,5.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2010,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2011,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2012,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2013,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2014,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2015,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2016,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2017,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2018,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2019,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2020,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Republic of Congo,2021,26.172300982,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2012,3.678338691,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2013,5.637986661,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2014,6.344501625,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2015,7.516647966,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2016,7.820726639,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2017,9.016393443,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2018,7.49524593,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2019,7.302424884,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2020,7.424559464,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Costa Rica,2021,7.117833809,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2010,46.593612208,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2011,47.749918311,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2012,50.403104048,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2013,49.160148124,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2014,52.621445283,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2015,50.387823296,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2016,50.863785435,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2017,47.231113731,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2018,47.53831059,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2019,48.445336008,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2020,49.504950495,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Croatia,2021,48.502994012,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2010,12.465631671,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2011,11.79458566,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2012,11.186792628,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2013,10.63371174,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2014,10.63371174,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2015,10.63371174,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2016,10.63371174,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2017,10.63371174,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2018,10.63371174,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2019,10.63371174,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2020,10.63371174,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cuba,2021,10.63371174,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2010,2.64446621,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2011,2.159244264,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2012,1.653543307,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2013,1.410105758,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2014,1.079136691,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2015,2.040816326,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2016,1.277955272,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2017,5.723905724,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2018,5.944055944,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2019,6.204379562,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2020,6.181818182,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Cyprus,2021,5.882352941,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2010,61.56748264,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2011,61.685708959,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2012,57.559830016,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2013,62.387165775,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2014,60.566197866,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2015,58.50625,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2016,59.865853659,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2017,59.337423313,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2018,55.974842767,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2019,54.316069057,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2020,51.098096633,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Czech Republic,2021,50.778354337,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2010,20.687815693,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2011,20.718963535,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2012,20.743563263,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2013,20.783388043,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2014,20.82616179,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2015,20.82616179,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2016,20.82616179,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2017,20.82616179,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2018,20.82616179,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2019,20.82616179,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2020,20.82616179,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ivory Coast,2021,20.82616179,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2010,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2011,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2012,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2013,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2014,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2015,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2016,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2017,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2018,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2019,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2020,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,North Korea,2021,13.225068724,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2010,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2011,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2012,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2013,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2014,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2015,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2016,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2017,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2018,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2019,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2020,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Democratic Republic of the Congo,2021,21.474546518,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2010,9.187082405,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2011,13.04289364,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2012,17.889587701,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2013,11.688833527,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2014,8.08369774,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2015,4.299088445,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2016,4.34433114,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2017,3.904898203,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2018,4.319882946,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2019,5.473384983,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2020,5.015720533,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Denmark,2021,5.015720533,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2010,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2011,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2012,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2013,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2014,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2015,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2016,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2017,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2018,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2019,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2020,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Djibouti,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2010,0.0,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2011,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2012,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2013,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2014,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2015,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2016,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2017,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2018,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2019,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2020,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominica,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2010,8.188932364,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2011,7.967502964,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2012,7.767553844,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2013,7.586103977,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2014,7.420699555,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2015,7.269302372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2016,7.269302372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2017,7.269302372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2018,7.269302372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2019,7.269302372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2020,7.269302372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Dominican Republic,2021,7.269302372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2010,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2011,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2012,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2013,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2014,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2015,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2016,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2017,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2018,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2019,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2020,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ecuador,2021,5.5353902,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2010,2.564102564,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2011,1.674808095,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2012,1.659751037,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2013,1.643835616,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2014,1.632653061,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2015,1.623815967,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2016,1.627118644,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2017,6.967741936,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2018,6.967741936,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2019,6.967741936,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2020,6.967741936,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Egypt,2021,6.967741936,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2010,12.504630614,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2011,13.144555415,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2012,13.853509109,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2013,14.643297708,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2014,15.528582231,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2015,16.289882351,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2016,17.253304721,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2017,18.116371832,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2018,19.338705004,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2019,20.613485925,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2020,22.14390115,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,El Salvador,2021,19.007266752,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2010,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2011,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2012,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2013,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2014,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2015,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2016,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2017,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2018,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2019,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2020,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Equatorial Guinea,2021,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2010,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2011,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2012,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2013,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2014,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2015,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2016,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2017,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2018,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2019,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2020,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eritrea,2021,0.171821306,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2010,96.462815495,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2011,96.582245313,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2012,95.95340282,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2013,96.30773182,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2014,96.235649811,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2015,96.004506351,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2016,96.264213681,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2017,96.421796111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2018,95.844764232,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2019,91.761408809,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2020,92.051279655,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Estonia,2021,92.292938883,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2010,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2011,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2012,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2013,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2014,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2015,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2016,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2017,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2018,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2019,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2020,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Eswatini,2021,1.938202247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2010,0.562622676,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2011,0.547887257,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2012,0.533903996,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2013,0.520616738,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2014,0.507974779,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2015,0.495932226,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2016,0.48436019,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2017,0.484447436,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2018,0.484447436,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2019,0.484447436,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2020,0.484447436,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ethiopia,2021,0.484447436,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2010,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2011,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2012,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2013,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2014,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2015,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2016,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2017,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2018,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2019,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2020,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Fiji,2021,11.307420495,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2010,73.533856074,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2011,72.361888576,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2012,70.914855296,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2013,69.49213279,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2014,68.743444571,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2015,67.562380038,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2016,65.217391304,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2017,65.217391304,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2018,71.428571429,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2019,57.142857143,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2020,57.142857143,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Finland,2021,57.142857143,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2010,69.633984184,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2011,71.717640815,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2012,70.448633432,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2013,69.595316125,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2014,72.901784079,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2015,70.020628823,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2016,68.652369605,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2017,69.071476286,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2018,69.159907763,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2019,67.601424404,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2020,64.337320826,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,France,2021,64.337320826,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2010,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2011,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2012,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2013,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2014,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2015,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2016,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2017,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2018,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2019,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2020,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gabon,2021,10.13659238,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2010,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2011,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2012,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2013,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2014,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2015,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2016,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2017,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2018,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2019,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2020,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Gambia,2021,20.866141732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2010,19.949538606,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2011,18.839229506,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2012,17.690699263,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2013,16.501939736,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2014,15.270799595,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2015,13.994971333,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2016,12.671976828,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2017,15.046597746,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2018,16.278115125,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2019,20.720800946,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2020,20.535519919,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Georgia,2021,20.189188181,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2010,70.000352827,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2011,68.025016307,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2012,65.294647174,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2013,62.445776827,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2014,62.660605444,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2015,60.906560951,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2016,61.624178919,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2017,58.768471873,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2018,56.549887535,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2019,54.299666699,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2020,54.299666699,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Germany,2021,54.299666699,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2010,7.580291243,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2011,7.402357066,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2012,7.22158875,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2013,7.102139987,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2014,6.98041809,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2015,6.604216271,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2016,6.486412672,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2017,6.486412672,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2018,6.486412672,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2019,6.486412672,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2020,6.486412672,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ghana,2021,6.486412672,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2010,1.81615409,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2011,1.298701299,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2012,1.268243583,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2013,1.269521411,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2014,1.270545528,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2015,1.271699637,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2016,3.364246251,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2017,3.355042431,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2018,3.240466311,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2019,3.173504696,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2020,3.240466311,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Greece,2021,2.904728859,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Grenada,2014,0.0,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Grenada,2015,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Grenada,2016,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Grenada,2017,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Grenada,2018,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Grenada,2019,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Grenada,2020,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Grenada,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2010,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2011,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2012,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2013,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2014,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2015,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2016,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2017,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2018,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2019,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2020,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guatemala,2021,18.143256821,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2010,7.792690653,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2011,7.63856294,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2012,7.491872223,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2013,7.352092906,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2014,7.218747779,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2015,7.091402579,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2016,6.969661262,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2017,6.853161889,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2018,6.741573034,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2019,6.741573034,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2020,6.741573034,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea,2021,6.741573034,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2010,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2011,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2012,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2013,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2014,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2015,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2016,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2017,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2018,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2019,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2020,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guinea Bissau,2021,6.263157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2010,1.412057867,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2011,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2012,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2013,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2014,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2015,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2016,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2017,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2018,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2019,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2020,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Guyana,2021,1.412057867,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2010,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2011,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2012,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2013,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2014,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2015,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2016,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2017,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2018,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2019,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2020,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Haiti,2021,3.517241379,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2010,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2011,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2012,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2013,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2014,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2015,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2016,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2017,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2018,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2019,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2020,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Honduras,2021,7.093963908,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2010,79.806791421,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2011,79.63191532,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2012,79.449613938,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2013,78.405330082,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2014,75.281508935,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2015,73.258458254,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2016,76.332367683,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2017,74.99464786,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2018,75.800845731,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2019,74.003529099,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2020,74.126159395,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Hungary,2021,74.126159395,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2010,66.779533484,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2011,68.511643604,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2012,67.957866123,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2013,70.398351648,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2014,72.311046512,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2015,71.146245059,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2016,76.153846154,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2017,71.146245059,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2018,71.146245059,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2019,71.146245059,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2020,71.146245059,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iceland,2021,71.146245059,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2010,2.233902759,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2011,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2012,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2013,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2014,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2015,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2016,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2017,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2018,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2019,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2020,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,India,2021,2.233902759,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2010,9.055338458,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2011,8.078706494,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2012,7.159178247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2013,6.291887689,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2014,5.472506392,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2015,4.781356009,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2016,4.103128439,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2017,4.103128439,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2018,4.103128439,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2019,4.103128439,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2020,4.103128439,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Indonesia,2021,4.103128439,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2010,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2011,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2012,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2013,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2014,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2015,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2016,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2017,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2018,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2019,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2020,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iran,2021,1.178992497,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2010,9.006024096,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2011,8.181818182,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2012,7.287581699,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2013,6.313993174,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2014,5.25,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2015,5.326460481,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2016,5.317769131,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2017,10.935686092,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2018,16.085790885,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2019,9.696220417,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2020,8.527596466,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Iraq,2021,10.654346596,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2010,19.163160663,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2011,23.239782089,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2012,27.158843687,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2013,29.909416502,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2014,32.391510766,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2015,36.235590202,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2016,38.71827239,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2017,35.68611545,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2018,33.492572476,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2019,33.56124243,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2020,33.579958463,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ireland,2021,33.39658444,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2010,6.774361647,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2011,6.459183674,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2012,6.156921539,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2013,5.866797258,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2014,5.588094095,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2015,5.320150659,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2016,2.396804261,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2017,4.544182661,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2018,4.616217261,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2019,4.522618378,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2020,4.368095583,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Israel,2021,4.001308931,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2010,28.561120389,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2011,26.523375308,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2012,24.499152481,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2013,22.514619883,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2014,22.518570509,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2015,22.522522523,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2016,22.579320861,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2017,22.636406397,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2018,22.693781315,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2019,22.707166028,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2020,22.720566539,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Italy,2021,22.720566539,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2010,45.627298733,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2011,50.396768143,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2012,54.638800545,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2013,58.436302579,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2014,61.855670103,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2015,58.181818182,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2016,81.240768094,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2017,72.6457427,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2018,60.273266263,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2019,40.931756995,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2020,6.424606479,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jamaica,2021,9.504381981,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2010,14.225897255,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2011,14.196587638,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2012,14.168879448,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2013,14.140104768,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2014,14.111150695,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2015,14.082015545,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2016,14.052697616,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2017,13.871374527,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2018,13.400758533,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2019,13.137755102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2020,13.154533844,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Japan,2021,13.154533844,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2010,4.479283315,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2011,4.471137804,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2012,3.886925795,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2013,4.328523862,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2014,5.057223907,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2015,3.693407466,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2016,3.112728666,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2017,3.046697039,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2018,3.205128205,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2019,3.337979472,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2020,3.337979472,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Jordan,2021,3.337979472,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2010,28.228278671,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2011,28.78691214,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2012,29.994390951,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2013,29.084372642,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2014,31.995840194,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2015,28.248326794,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2016,29.004526766,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2017,28.563248947,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2018,20.975278226,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2019,16.919106448,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2020,18.490066764,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kazakhstan,2021,18.490066764,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2010,3.884400249,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2011,3.884400249,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2012,3.884400249,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2013,3.884400249,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2014,3.884400249,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2015,3.884400249,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2016,7.514880952,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2017,7.514880952,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2018,7.514880952,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2019,7.514880952,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2020,7.514880952,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kenya,2021,7.514880952,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2010,2.14958378,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2011,2.120138869,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2012,2.091489729,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2013,2.063604529,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2014,2.036453116,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2015,2.010006901,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2016,1.951096969,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2017,1.864,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2018,1.864,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2019,1.864,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2020,1.864,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kuwait,2021,1.864,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2010,4.34703858,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2011,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2012,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2013,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2014,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2015,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2016,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2017,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2018,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2019,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2020,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Kyrgyzstan,2021,4.386422976,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2010,2.952414033,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2011,2.737079375,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2012,2.551020408,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2013,2.388646902,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2014,2.245706737,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2015,2.165605096,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2016,2.219321149,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2017,2.322404372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2018,2.322404372,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2019,2.31292517,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2020,2.31292517,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Laos,2021,2.31292517,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2010,20.879211175,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2011,21.270849881,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2012,21.637202152,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2013,21.065375303,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2014,21.819262782,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2015,19.830028329,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2016,18.609201514,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2017,20.233209826,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2018,21.50543499,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2019,20.409899848,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2020,20.534625381,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Latvia,2021,20.534625381,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2010,33.333333333,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2011,36.855036855,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2012,40.154669839,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2013,43.252595156,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2014,46.166759933,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2015,48.913043478,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2016,48.913043478,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2017,48.913043478,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2018,48.913043478,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2019,48.913043478,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2020,48.913043478,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lebanon,2021,48.913043478,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2010,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2011,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2012,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2013,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2014,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2015,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2016,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2017,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2018,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2019,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2020,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lesotho,2021,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2010,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2011,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2012,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2013,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2014,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2015,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2016,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2017,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2018,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2019,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2020,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Liberia,2021,36.600411241,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2010,4.364167119,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2011,4.588744146,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2012,4.802744425,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2013,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2014,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2015,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2016,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2017,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2018,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2019,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2020,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Libya,2021,4.802744425,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2010,82.495517854,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2011,79.963887277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2012,76.029482411,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2013,69.079586877,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2014,46.72818792,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2015,48.027078124,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2016,37.901916207,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2017,26.911196911,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2018,23.731278745,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2019,23.731278745,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2020,23.731278745,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Lithuania,2021,23.731278745,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2010,6.105263158,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2011,7.422680412,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2012,8.314606742,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2013,4.64037123,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2014,6.578947368,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2015,4.464285714,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2016,2.927927928,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2017,3.50877193,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2018,3.639846743,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2019,8.92494929,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2020,0.0,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Luxembourg,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2010,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2011,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2012,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2013,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2014,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2015,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2016,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2017,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2018,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2019,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2020,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Madagascar,2021,1.194225819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2010,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2011,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2012,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2013,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2014,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2015,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2016,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2017,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2018,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2019,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2020,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malawi,2021,3.515625,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2010,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2011,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2012,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2013,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2014,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2015,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2016,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2017,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2018,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2019,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2020,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malaysia,2021,29.901603498,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2010,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2011,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2012,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2013,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2014,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2015,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2016,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2017,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2018,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2019,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2020,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Maldives,2021,5.084745763,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2010,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2011,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2012,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2013,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2014,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2015,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2016,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2017,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2018,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2019,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2020,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mali,2021,0.077130737,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2010,2.551743692,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2011,2.528800225,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2012,2.506265664,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2013,2.207505519,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2014,1.564945227,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2015,1.618122977,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2016,1.592356688,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2017,1.515151515,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2018,1.569142105,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2019,1.590896435,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2020,1.583633726,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Malta,2021,1.627136201,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2010,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2011,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2012,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2013,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2014,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2015,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2016,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2017,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2018,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2019,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2020,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritania,2021,2.355206636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2010,1.545595054,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2011,1.751313485,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2012,1.890034364,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2013,2.138157895,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2014,2.096774193,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2015,2.287581699,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2016,1.916932907,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2017,1.948051948,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2018,1.845637584,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2019,1.672240803,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2020,1.480263158,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mauritius,2021,1.487603306,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2010,9.123571965,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2011,9.066002491,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2012,8.948061837,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2013,9.635381582,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2014,9.091979466,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2015,9.134418958,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2016,9.1837324,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2017,7.757285975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2018,9.548360951,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2019,9.57236069,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2020,9.553535534,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mexico,2021,9.545939696,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2010,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2011,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2012,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2013,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2014,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2015,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2016,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2017,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2018,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2019,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2020,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Monaco,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2010,40.193430886,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2011,36.954818491,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2012,33.448908831,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2013,29.641185647,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2014,25.490922564,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2015,20.94972067,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2016,35.942906574,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2017,35.942906574,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2018,35.942906574,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2019,35.942906574,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2020,35.942906574,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mongolia,2021,35.942906574,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2010,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2011,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2012,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2013,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2014,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2015,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2016,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2017,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2018,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2019,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2020,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Montenegro,2021,39.030453698,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2010,2.032403413,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2011,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2012,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2013,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2014,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2015,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2016,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2017,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2018,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2019,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2020,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Morocco,2021,2.032403413,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2010,2.387653757,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2011,2.233546052,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2012,2.088125809,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2013,1.950678564,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2014,1.820566104,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2015,1.697216565,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2016,1.697216565,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2017,1.697216565,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2018,1.697216565,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2019,1.697216565,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2020,1.697216565,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Mozambique,2021,1.697216565,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2010,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2011,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2012,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2013,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2014,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2015,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2016,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2017,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2018,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2019,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2020,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Myanmar,2021,1.492599891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2010,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2011,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2012,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2013,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2014,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2015,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2016,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2017,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2018,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2019,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2020,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Namibia,2021,4.861111111,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2010,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2011,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2012,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2013,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2014,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2015,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2016,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2017,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2018,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2019,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2020,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nepal,2021,0.310621137,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2010,87.73921802,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2011,87.586537045,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2012,88.089376306,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2013,86.51944126,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2014,85.348761591,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2015,84.031245541,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2016,76.404018247,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2017,77.159495718,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2018,72.052606858,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2019,73.583311517,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2020,71.563929689,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Netherlands,2021,73.481926519,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2010,22.764852913,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2011,23.032746819,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2012,23.307020888,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2013,23.587905794,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2014,23.875643463,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2015,24.170487773,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2016,24.472705299,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2017,24.403001222,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2018,24.267931553,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2019,24.214491666,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2020,24.214491666,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,New Zealand,2021,24.214491666,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2010,3.986510596,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2011,3.583306135,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2012,3.200335316,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2013,2.802504419,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2014,2.38893143,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2015,1.958663121,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2016,1.510667719,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2017,1.043826645,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2018,0.556925187,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2019,0.04866562,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2020,0.04866562,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nicaragua,2021,0.04866562,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2010,1.628451896,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2011,1.35335689,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2012,1.095065544,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2013,1.654258721,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2014,2.117102216,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2015,1.940168458,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2016,1.986034798,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2017,2.277003129,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2018,1.535259351,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2019,1.496290918,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2020,1.496290918,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Niger,2021,1.496290918,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2010,15.751503006,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2011,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2012,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2013,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2014,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2015,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2016,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2017,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2018,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2019,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2020,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Nigeria,2021,15.751503006,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2010,20.634599838,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2011,20.851622017,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2012,7.172859766,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2013,21.629270265,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2014,14.828078027,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2015,11.379161795,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2016,2.137237695,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2017,3.937759796,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2018,0.966092318,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2019,1.545166898,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2020,3.476140464,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Macedonia,2021,1.545166898,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2010,38.17229212,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2011,38.681017047,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2012,39.203484754,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2013,38.890301028,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2014,38.540429666,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2015,39.467865566,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2016,40.441037647,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2017,39.796373365,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2018,39.828167644,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2019,39.860012767,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2020,39.891908854,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Norway,2021,40.507880314,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2010,5.870979082,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2011,6.345782722,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2012,6.791788211,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2013,7.211538461,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2014,9.092536245,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2015,10.87962963,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2016,12.713675214,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2017,12.713675214,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2018,12.706887347,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2019,12.428198433,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2020,12.428198433,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Oman,2021,12.428198433,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2010,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2011,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2012,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2013,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2014,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2015,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2016,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2017,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2018,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2019,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2020,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Pakistan,2021,0.763150722,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2010,6.937799043,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2011,6.937799043,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2012,6.937799043,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2013,6.937799043,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2014,6.937799043,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2015,6.937799043,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2016,6.937799043,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2017,8.528784648,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2018,8.241335045,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2019,8.159846853,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2020,7.78322926,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Palestine,2021,8.895985402,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2010,0.964320154,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2011,0.875699343,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2012,0.796169157,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2013,0.724399078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2014,0.541170594,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2015,0.511468073,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2016,0.511804524,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2017,0.511804524,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2018,0.511804524,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2019,0.511804524,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2020,0.511804524,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Panama,2021,0.511804524,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2010,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2011,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2012,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2013,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2014,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2015,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2016,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2017,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2018,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2019,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2020,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Papua New Guinea,2021,42.744197909,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2010,7.225472563,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2011,6.74231092,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2012,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2013,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2014,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2015,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2016,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2017,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2018,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2019,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2020,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Paraguay,2021,6.382096975,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2010,4.979668167,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2011,5.922247323,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2012,6.671970804,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2013,7.282534079,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2014,7.789392068,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2015,8.216898324,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2016,8.582492574,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2017,8.89838024,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2018,9.174213601,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2019,9.105058366,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2020,9.105058366,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Peru,2021,9.105058366,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2010,9.927587573,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2011,10.657990221,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2012,10.726664135,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2013,10.721517638,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2014,10.794487717,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2015,11.49407993,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2016,12.043146079,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2017,17.338825649,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2018,17.56639496,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2019,11.490246908,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2020,12.155860693,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Philippines,2021,13.443826042,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2010,70.412295233,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2011,70.871357762,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2012,66.620209059,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2013,71.352587132,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2014,71.52212555,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2015,71.055888794,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2016,70.714420714,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2017,69.784743577,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2018,64.928720965,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2019,64.30672482,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2020,63.698355387,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Poland,2021,64.540452415,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2010,21.236624807,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2011,22.159287789,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2012,23.292703677,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2013,24.419010604,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2014,25.634108807,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2015,26.948928789,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2016,28.303617697,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2017,29.686921984,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2018,30.494333333,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2019,29.833569492,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2020,29.833569492,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Portugal,2021,29.833569492,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2010,75.854263491,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2011,75.256596581,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2012,74.603700722,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2013,73.887549713,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2014,73.09848296,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2015,72.22476714,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2016,72.22476714,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2017,72.22476714,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2018,72.22476714,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2019,72.22476714,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2020,72.22476714,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Puerto Rico,2021,72.22476714,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2010,2.340960964,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2011,2.374832567,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2012,2.381629342,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2013,2.451168135,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2014,10.176358437,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2015,14.096726557,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2016,15.746219592,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2017,3.985932005,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2018,4.751246361,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2019,4.983553831,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2020,4.414139303,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Qatar,2021,4.301014428,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2010,16.156620382,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2011,16.132150712,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2012,16.107755049,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2013,16.08343306,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2014,16.05918441,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2015,16.504710333,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2016,16.43157817,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2017,16.43157817,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2018,16.43157817,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2019,16.43157817,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2020,16.43157817,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Korea,2021,16.43157817,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2010,80.331753554,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2011,79.784317309,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2012,79.204816255,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2013,78.681844641,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2014,77.658303465,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2015,77.261904762,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2016,77.34282325,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2017,69.404761905,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2018,69.534050179,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2019,69.285714286,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2020,72.875,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Moldova,2021,73.05764411,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2010,71.221864952,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2011,66.409090909,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2012,66.892934279,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2013,67.045808663,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2014,66.41197071,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2015,64.563031709,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2016,64.010040791,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2017,62.512918943,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2018,60.847880299,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2019,60.417560418,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2020,54.597079502,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Romania,2021,52.314343845,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2010,59.818731118,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2011,59.818731118,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2012,59.818731118,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2013,59.818731118,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2014,49.131478605,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2015,45.757284662,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2016,43.772187066,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2017,43.564663872,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2018,44.785560012,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2019,44.785560012,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2020,44.785560012,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Russia,2021,44.785560012,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2010,4.452966262,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2011,3.989770588,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2012,3.58067486,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2013,3.216723962,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2014,2.890835872,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2015,2.597336266,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2016,2.331625311,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2017,2.089934836,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2018,1.869148493,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2019,1.639344262,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2020,1.665278934,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Rwanda,2021,1.639344262,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2012,0.0,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2013,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2014,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2015,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2016,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2017,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2018,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2019,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2020,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Kitts and Nevis,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2010,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2011,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2012,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2013,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2014,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2015,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2016,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2017,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2018,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2019,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2020,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Lucia,2021,0.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2013,0.023523877,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2014,0.023523877,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2015,0.023523877,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2016,0.023523877,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2017,0.023523877,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2018,0.023523877,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2019,0.023523877,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2020,0.023523877,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saint Vincent and the Grenadines,2021,0.023523877,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sao Tome and Principe,2016,1.466992665,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sao Tome and Principe,2017,1.466992665,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sao Tome and Principe,2018,1.466992665,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sao Tome and Principe,2019,1.466992665,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sao Tome and Principe,2020,1.466992665,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sao Tome and Principe,2021,1.466992665,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2010,3.661928779,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2011,3.845553213,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2012,4.037356322,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2013,3.998023449,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2014,3.971982575,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2015,3.934439433,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2016,4.240828946,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2017,4.282655246,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2018,5.386272699,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2019,5.386272699,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2020,5.386272699,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Saudi Arabia,2021,5.386272699,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2010,1.187174139,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2011,1.020644273,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2012,0.856488407,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2013,0.694656133,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2014,0.535098466,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2015,0.377767782,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2016,0.222617782,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2017,0.06960344,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2018,0.046760411,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2019,0.046760411,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2020,0.046760411,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Senegal,2021,0.046760411,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2012,80.04652365,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2013,69.578313253,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2014,68.040346554,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2015,70.534286019,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2016,72.452990545,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2017,75.445382527,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2018,75.417004049,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2019,75.486776065,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2020,74.874636116,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Serbia,2021,73.866561077,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2010,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2011,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2012,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2013,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2014,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2015,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2016,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2017,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2018,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2019,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2020,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Seychelles,2021,27.737226277,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2010,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2011,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2012,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2013,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2014,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2015,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2016,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2017,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2018,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2019,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2020,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sierra Leone,2021,26.154571159,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2010,52.251924826,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2011,52.126546871,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2012,51.965407282,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2013,51.750660546,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2014,51.450218549,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2015,51.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2016,51.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2017,51.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2018,51.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2019,51.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2020,51.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Singapore,2021,51.0,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2010,43.740313415,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2011,43.185779017,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2012,49.421313693,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2013,36.406900654,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2014,41.391024495,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2015,42.245782161,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2016,42.598130841,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2017,41.560309186,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2018,42.839173405,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2019,42.449606158,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2020,41.873873874,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovakia,2021,41.904303771,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2010,82.133096717,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2011,81.670862735,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2012,82.329490357,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2013,85.496711665,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2014,83.199020708,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2015,81.293199554,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2016,81.39298997,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2017,81.382864505,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2018,81.893860562,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2019,81.673728814,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2020,82.768924303,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Slovenia,2021,81.095596133,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2010,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2011,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2012,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2013,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2014,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2015,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2016,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2017,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2018,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2019,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2020,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Somalia,2021,0.060642814,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2010,10.035371504,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2011,10.189000632,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2012,10.338444203,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2013,10.483870968,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2014,15.266393443,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2015,19.239013934,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2016,20.682414698,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2017,21.155830753,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2018,20.503778337,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2019,22.486772487,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2020,21.314526154,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Africa,2021,21.24056315,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2012,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2013,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2014,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2015,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2016,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2017,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2018,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2019,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2020,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,South Sudan,2021,34.194528875,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2010,19.344764933,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2011,19.102662899,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2012,17.936191698,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2013,19.977100063,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2014,19.296216249,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2015,19.220029193,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2016,19.10893309,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2017,18.578454177,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2018,19.439627325,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2019,19.197658697,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2020,18.952446589,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Spain,2021,18.952446589,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2010,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2011,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2012,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2013,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2014,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2015,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2016,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2017,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2018,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2019,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2020,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sri Lanka,2021,6.418971111,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2012,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2013,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2014,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2015,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2016,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2017,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2018,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2019,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2020,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sudan,2021,0.278448116,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2010,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2011,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2012,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2013,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2014,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2015,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2016,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2017,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2018,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2019,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2020,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Suriname,2021,22.000324728,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2010,58.460394199,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2011,58.129616937,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2012,57.782632441,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2013,57.418219627,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2014,57.035031586,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2015,56.631578947,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2016,57.460235131,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2017,58.33407335,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2018,59.256892459,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2019,60.232929464,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2020,51.006441224,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Sweden,2021,61.266924565,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2012,32.058060654,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2013,37.370624491,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2014,37.721563564,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2015,37.026155087,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2016,37.047498271,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2017,37.068866075,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2018,36.355922616,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2019,37.133117633,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2020,36.898610633,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Switzerland,2021,37.435927307,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2010,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2011,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2012,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2013,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2014,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2015,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2016,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2017,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2018,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2019,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2020,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Syria,2021,3.671750078,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2010,3.805779994,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2011,3.880840039,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2012,3.960969213,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2013,4.046698973,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2014,4.138637758,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2015,4.083922361,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2016,3.87472854,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2017,26.089133701,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2018,16.472273378,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2019,15.185813997,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2020,16.262626263,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tajikistan,2021,16.262626263,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2010,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2011,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2012,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2013,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2014,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2015,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2016,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2017,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2018,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2019,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2020,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Thailand,2021,4.845914913,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2010,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2011,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2012,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2013,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2014,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2015,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2016,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2017,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2018,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2019,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2020,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,East Timor,2021,0.170648464,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2010,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2011,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2012,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2013,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2014,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2015,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2016,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2017,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2018,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2019,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2020,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Togo,2021,2.825112108,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2010,33.635559487,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2011,33.637787056,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2012,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2013,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2014,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2015,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2016,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2017,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2018,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2019,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2020,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Trinidad and Tobago,2021,33.637787056,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2010,4.920233165,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2011,4.992435703,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2012,4.309279079,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2013,3.662268887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2014,3.048610258,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2015,2.465789216,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2016,1.911538257,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2017,2.488938053,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2018,1.193331079,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2019,1.765533045,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2020,1.725483637,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Tunisia,2021,1.725483637,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2010,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2011,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2012,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2013,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2014,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2015,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2016,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2017,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2018,3.001359376,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2019,2.911659047,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2020,3.074012659,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkmenistan,2021,4.641954248,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2010,3.499505529,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2011,3.54954955,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2012,3.712066287,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2013,4.094727594,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2014,4.59590738,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2015,3.012918922,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2016,1.7235139,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2017,1.822087427,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2018,1.844493219,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2019,1.820946981,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2020,1.881564534,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Turkey,2021,2.0,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2010,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2011,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2012,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2013,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2014,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2015,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2016,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2017,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2018,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2019,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2020,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uganda,2021,7.849293564,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2010,47.986531986,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2011,46.986746687,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2012,45.843158135,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2013,44.54157349,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2014,43.046820405,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2015,43.120596767,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2016,43.32792537,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2017,36.484556329,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2018,36.484556329,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2019,38.642934586,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2020,40.932117528,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Ukraine,2021,40.936265072,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2010,1.219702491,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2011,1.13090575,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2012,1.045671994,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2013,0.963790991,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2014,0.885068732,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2015,0.809325891,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2016,0.736396467,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2017,0.739737921,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2018,0.727130208,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2019,0.735126143,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2020,0.742776149,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Arab Emirates,2021,0.75499566,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2010,11.074034415,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2011,8.750325436,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2012,13.659605552,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2013,13.047219391,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2014,11.945085242,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2015,11.501930265,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2016,11.995249406,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2017,11.995249406,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2018,11.995249406,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2019,11.995249406,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2020,11.995249406,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Kingdom,2021,11.995249406,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2010,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2011,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2012,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2013,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2014,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2015,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2016,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2017,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2018,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2019,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2020,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United Republic of Tanzania,2021,0.482253086,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2010,51.154265944,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2011,50.417949846,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2012,49.655701708,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2013,48.866127037,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2014,48.047729533,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2015,47.198901618,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2016,47.198901618,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2017,47.198901618,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2018,47.198901618,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2019,47.198901618,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2020,47.198901618,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,United States of America,2021,47.198901618,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2010,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2011,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2012,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2013,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2014,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2015,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2016,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2017,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2018,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2019,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2020,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uruguay,2021,2.18579235,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2010,3.354210881,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2011,3.496459678,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2012,3.641229336,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2013,3.788587465,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2014,3.938604112,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2015,3.553032502,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2016,3.874633431,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2017,3.616298812,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2018,3.517133846,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2019,3.408922484,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2020,3.477428929,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Uzbekistan,2021,4.140900554,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2010,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2011,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2012,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2013,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2014,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2015,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2016,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2017,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2018,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2019,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2020,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Venezuela,2021,3.506096887,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2010,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2011,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2012,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2013,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2014,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2015,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2016,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2017,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2018,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2019,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2020,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Vietnam,2021,3.747409484,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2010,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2011,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2012,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2013,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2014,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2015,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2016,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2017,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2018,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2019,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2020,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Yemen,2021,1.823281907,%,I,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2010,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2011,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2012,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2013,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2014,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2015,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2016,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2017,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2018,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2019,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2020,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zambia,2021,8.269720102,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2010,4.705194189,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2011,4.25513588,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2012,3.799411308,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2013,3.337912787,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2014,2.870529885,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2015,2.397149336,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2016,2.392921187,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2017,2.437782636,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2018,2.157087442,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2019,1.920371177,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2020,1.656971738,%,E,False
+Water use,Water withdrawal by sector,Industrial water withdrawal as % of total water withdrawal,Zimbabwe,2021,1.656971738,%,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2011,10.9,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2012,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2013,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2014,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2015,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2016,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2017,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2018,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2019,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2020,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Afghanistan,2021,10.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2010,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2011,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2012,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2013,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2014,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2015,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2016,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2017,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2018,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2019,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2020,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Albania,2021,0.322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2010,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2011,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2012,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2013,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2014,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2015,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2016,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2017,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2018,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2019,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2020,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Algeria,2021,2.511,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2010,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2011,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2012,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2013,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2014,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2015,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2016,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2017,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2018,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2019,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2020,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Angola,2021,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2010,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2011,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2012,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2013,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2014,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2015,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2016,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2017,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2018,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2019,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2020,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Antigua and Barbuda,2021,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2010,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2011,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2012,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2013,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2014,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2015,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2016,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2017,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2018,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2019,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2020,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Argentina,2021,12.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2010,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2011,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2012,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2013,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2014,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2015,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2016,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2017,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2018,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2019,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2020,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Armenia,2021,0.624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2010,3.892,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2011,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2012,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2013,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2014,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2015,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2016,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2017,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2018,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2019,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2020,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Australia,2021,3.892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2010,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2011,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2012,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2013,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2014,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2015,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2016,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2017,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2018,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2019,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2020,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Austria,2021,0.0599,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2010,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2011,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2012,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2013,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2014,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2015,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2016,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2017,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2018,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2019,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2020,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Azerbaijan,2021,3.62,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2010,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2011,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2012,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2013,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2014,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2015,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2016,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2017,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2018,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2019,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2020,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bahrain,2021,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2010,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2011,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2012,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2013,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2014,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2015,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2016,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2017,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2018,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2019,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2020,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bangladesh,2021,24.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2010,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2011,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2012,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2013,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2014,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2015,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2016,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2017,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2018,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2019,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2020,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Barbados,2021,0.0137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2011,0.043,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2012,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2013,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2014,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2015,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2016,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2017,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2018,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2019,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2020,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belarus,2021,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2010,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2011,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2012,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2013,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2014,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2015,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2016,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2017,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2018,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2019,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2020,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Belgium,2021,0.0222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2010,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2011,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2012,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2013,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2014,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2015,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2016,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2017,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2018,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2019,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2020,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Benin,2021,0.0108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2010,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2011,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2012,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2013,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2014,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2015,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2016,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2017,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2018,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2019,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2020,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bhutan,2021,0.1038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2010,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2011,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2012,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2013,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2014,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2015,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2016,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2017,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2018,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2019,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2020,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bolivia,2021,0.6884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2010,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2011,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2012,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2013,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2014,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2015,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2016,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2017,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2018,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2019,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2020,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Botswana,2021,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2010,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2011,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2012,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2013,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2014,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2015,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2016,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2017,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2018,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2019,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2020,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brazil,2021,15.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2010,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2011,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2012,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2013,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2014,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2015,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2016,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2017,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2018,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2019,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2020,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Brunei,2021,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2010,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2011,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2012,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2013,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2014,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2015,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2016,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2017,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2018,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2019,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2020,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Bulgaria,2021,0.2174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2010,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2011,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2012,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2013,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2014,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2015,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2016,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2017,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2018,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2019,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2020,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burkina Faso,2021,0.1289,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2010,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2011,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2012,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2013,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2014,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2015,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2016,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2017,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2018,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2019,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2020,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Burundi,2021,0.0284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2010,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2011,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2012,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2013,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2014,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2015,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2016,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2017,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2018,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2019,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2020,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cape Verde,2021,0.0077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2010,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2011,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2012,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2013,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2014,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2015,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2016,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2017,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2018,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2019,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2020,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cambodia,2021,0.9186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2010,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2011,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2012,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2013,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2014,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2015,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2016,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2017,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2018,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2019,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2020,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cameroon,2021,0.201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2010,2.544,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2011,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2012,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2013,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2014,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2015,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2016,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2017,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2018,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2019,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2020,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Canada,2021,2.544,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2010,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2011,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2012,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2013,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2014,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2015,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Central African Republic,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2010,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2011,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2012,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2013,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2014,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2015,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2016,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2017,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2018,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2019,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2020,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Chad,2021,0.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2010,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2011,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2012,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2013,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2014,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2015,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2016,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2017,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2018,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2019,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2020,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,China,2021,256.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2011,2.273,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2012,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2013,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2014,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2015,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2016,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2017,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2018,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2019,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2020,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Colombia,2021,2.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2010,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2011,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2012,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2013,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2014,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2015,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2016,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2017,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2018,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2019,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2020,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Republic of Congo,2021,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2010,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2011,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2012,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2013,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2014,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2015,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2016,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2017,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2018,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2019,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2020,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cuba,2021,0.6854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2010,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2011,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2012,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2013,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2014,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2015,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2016,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2017,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2018,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2019,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2020,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Cyprus,2021,0.0921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2010,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2011,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2012,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2013,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2014,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2015,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2016,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2017,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2018,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2019,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2020,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Czech Republic,2021,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2010,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2011,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2012,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2013,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2014,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2015,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2016,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2017,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2018,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2019,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2020,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ivory Coast,2021,0.1432,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2010,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2011,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2012,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2013,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2014,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2015,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2016,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2017,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2018,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2019,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2020,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,North Korea,2021,3.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2010,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2011,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2012,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2013,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2014,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2015,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2016,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2017,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2018,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2019,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2020,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Democratic Republic of the Congo,2021,0.0196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2010,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2011,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2012,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2013,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2014,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2015,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2016,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2017,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2018,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2019,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2020,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Denmark,2021,0.0509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2010,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2011,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2012,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2013,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2014,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2015,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2016,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2017,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2018,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2019,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2020,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Djibouti,2021,0.0008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2010,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2011,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2012,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2013,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2014,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2015,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2016,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2017,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2018,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2019,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2020,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Dominican Republic,2021,1.136,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2010,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2011,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2012,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2013,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2014,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2015,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2016,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2017,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2018,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2019,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2020,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ecuador,2021,3.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2010,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2011,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2012,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2013,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2014,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2015,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2016,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2017,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2018,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2019,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2020,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Egypt,2021,45.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2010,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2011,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2012,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2013,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2014,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2015,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2016,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2017,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2018,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2019,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2020,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eritrea,2021,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2010,4e-05,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2011,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2012,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2013,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2014,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2015,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2016,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2017,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2018,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2019,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2020,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Estonia,2021,4e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2010,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2011,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2012,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2013,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2014,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2015,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2016,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2017,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2018,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2019,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2020,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Eswatini,2021,0.313,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2010,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2011,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2012,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2013,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2014,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2015,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2016,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2017,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2018,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2019,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2020,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ethiopia,2021,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2010,0.028,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2011,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2012,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2013,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2014,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2015,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2016,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2017,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2018,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2019,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2020,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Finland,2021,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2010,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2011,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2012,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2013,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2014,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2015,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2016,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2017,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2018,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2019,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2020,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,France,2021,2.351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2010,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2011,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2012,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2013,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2014,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2015,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2016,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2017,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2018,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2019,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2020,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gabon,2021,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2010,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2011,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2012,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2013,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2014,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2015,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2016,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2017,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2018,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2019,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2020,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Gambia,2021,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2010,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2011,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2012,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2013,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2014,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2015,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2016,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2017,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2018,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2019,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2020,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Georgia,2021,0.248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2010,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2011,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2012,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2013,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2014,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2015,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2016,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2017,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2018,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2019,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2020,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Germany,2021,0.0479,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2010,0.162,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2011,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2012,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2013,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2014,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2015,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2016,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2017,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2018,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2019,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2020,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ghana,2021,0.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2010,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2011,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2012,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2013,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2014,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2015,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2016,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2017,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2018,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2019,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2020,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Greece,2021,5.441,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2010,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2011,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2012,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2013,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2014,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2015,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2016,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2017,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2018,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2019,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2020,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Grenada,2021,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2010,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2011,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2012,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2013,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2014,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2015,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2016,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2017,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2018,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2019,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2020,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guatemala,2021,0.4389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2010,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2011,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2012,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2013,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2014,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2015,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2016,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2017,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2018,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2019,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2020,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea,2021,0.0705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2010,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2011,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2012,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2013,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2014,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2015,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2016,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2017,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2018,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2019,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2020,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guinea Bissau,2021,0.0263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2010,0.5278,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2011,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2012,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2013,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2014,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2015,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2016,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2017,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2018,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2019,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2020,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Guyana,2021,0.5278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2010,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2011,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2012,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2013,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2014,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2015,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2016,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2017,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2018,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2019,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2020,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Haiti,2021,0.348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2010,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2011,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2012,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2013,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2014,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2015,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2016,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2017,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2018,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2019,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2020,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Hungary,2021,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2010,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2011,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2012,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2013,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2014,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2015,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2016,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2017,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2018,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2019,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2020,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,India,2021,370.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2010,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2011,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2012,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2013,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2014,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2015,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2016,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2017,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2018,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2019,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2020,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Indonesia,2021,47.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2010,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2011,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2012,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2013,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2014,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2015,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2016,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2017,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2018,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2019,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2020,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iran,2021,49.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2010,15.02,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2011,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2012,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2013,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2014,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2015,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2016,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2017,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2018,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2019,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2020,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Iraq,2021,15.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2010,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2011,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2012,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2013,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2014,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2015,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2016,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2017,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2018,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2019,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2020,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ireland,2021,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2010,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2011,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2012,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2013,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2014,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2015,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2016,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2017,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2018,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2019,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2020,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Israel,2021,0.5562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2010,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2011,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2012,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2013,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2014,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2015,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2016,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2017,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2018,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2019,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2020,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Italy,2021,8.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2010,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2011,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2012,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2013,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2014,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2015,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2016,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2017,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2018,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2019,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2020,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jamaica,2021,0.129,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2010,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2011,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2012,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2013,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2014,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2015,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2016,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2017,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2018,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2019,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2020,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Japan,2021,38.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2010,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2011,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2012,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2013,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2014,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2015,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2016,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2017,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2018,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2019,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2020,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Jordan,2021,0.3011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2010,6.448,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2011,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2012,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2013,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2014,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2015,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2016,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2017,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2018,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2019,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2020,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kazakhstan,2021,6.448,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2010,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2011,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2012,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2013,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2014,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2015,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2016,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2017,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2018,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2019,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2020,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kenya,2021,0.486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2010,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2011,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2012,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2013,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2014,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2015,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2016,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2017,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2018,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2019,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2020,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kuwait,2021,0.119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2010,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2011,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2012,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2013,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2014,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2015,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2016,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2017,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2018,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2019,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2020,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Kyrgyzstan,2021,2.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2010,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2011,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2012,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2013,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2014,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2015,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2016,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2017,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2018,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2019,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2020,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Laos,2021,1.521,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2010,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2011,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2012,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2013,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2014,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2015,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2016,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2017,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2018,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2019,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2020,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Latvia,2021,0.0355,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2010,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2011,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2012,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2013,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2014,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2015,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2016,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2017,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2018,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2019,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2020,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lebanon,2021,0.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2010,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2011,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2012,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2013,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2014,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2015,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2016,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2017,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2018,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2019,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2020,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lesotho,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2010,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2011,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2012,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2013,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2014,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2015,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2016,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Liberia,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2010,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2011,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2012,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2013,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2014,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2015,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2016,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2017,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2018,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2019,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2020,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Libya,2021,1.833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2010,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2011,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2012,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2013,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2014,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2015,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2016,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2017,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2018,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2019,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2020,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Lithuania,2021,0.0014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2010,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2011,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2012,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2013,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2014,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2015,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2016,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2017,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2018,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2019,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2020,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Madagascar,2021,4.398,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2010,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2011,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2012,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2013,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2014,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2015,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2016,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2017,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2018,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2019,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2020,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malawi,2021,0.3098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2010,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2011,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2012,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2013,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2014,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2015,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2016,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2017,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2018,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2019,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2020,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malaysia,2021,1.271,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2010,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2011,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2012,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2013,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2014,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2015,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2016,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2017,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2018,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2019,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2020,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mali,2021,1.469,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2010,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2011,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2012,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2013,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2014,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2015,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2016,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2017,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2018,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2019,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2020,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Malta,2021,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2010,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2011,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2012,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2013,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2014,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2015,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2016,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2017,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2018,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2019,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2020,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritania,2021,0.3748,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2010,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2011,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2012,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2013,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2014,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2015,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2016,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2017,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2018,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2019,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2020,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mauritius,2021,0.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2010,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2011,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2012,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2013,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2014,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2015,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2016,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2017,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2018,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2019,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2020,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mexico,2021,26.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2010,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2011,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2012,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2013,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2014,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2015,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2016,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2017,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2018,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2019,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2020,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mongolia,2021,0.108,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2010,0.0005,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2011,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2012,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2013,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2014,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2015,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2016,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2017,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2018,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2019,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2020,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Montenegro,2021,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2010,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2011,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2012,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2013,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2014,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2015,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2016,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2017,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2018,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2019,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2020,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Morocco,2021,5.823,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2010,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2011,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2012,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2013,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2014,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2015,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2016,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2017,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2018,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2019,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2020,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Mozambique,2021,0.1833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2010,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2011,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2012,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2013,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2014,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2015,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2016,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2017,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2018,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2019,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2020,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Myanmar,2021,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2010,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2011,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2012,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2013,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2014,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2015,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2016,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2017,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2018,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2019,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2020,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Namibia,2021,0.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2010,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2011,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2012,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2013,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2014,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2015,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2016,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2017,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2018,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2019,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2020,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nepal,2021,5.428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2010,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2011,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2012,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2013,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2014,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2015,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2016,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2017,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2018,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2019,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2020,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Netherlands,2021,0.0425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2010,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2011,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2012,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2013,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2014,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2015,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2016,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2017,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2018,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2019,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2020,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,New Zealand,2021,1.492,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2010,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2011,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2012,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2013,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2014,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2015,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2016,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2017,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2018,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2019,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2020,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nicaragua,2021,0.512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2010,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2011,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2012,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2013,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2014,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2015,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2016,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2017,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2018,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2019,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2020,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Niger,2021,0.2012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2010,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2011,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2012,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2013,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2014,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2015,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2016,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2017,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2018,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2019,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2020,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Nigeria,2021,1.695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2010,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2011,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2012,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2013,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2014,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2015,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2016,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2017,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2018,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2019,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2020,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Macedonia,2021,0.0784,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2010,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2011,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2012,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2013,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2014,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2015,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2016,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2017,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2018,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2019,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2020,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Norway,2021,0.0677,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2010,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2011,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2012,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2013,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2014,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2015,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2016,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2017,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2018,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2019,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2020,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Oman,2021,0.721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2010,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2011,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2012,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2013,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2014,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2015,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2016,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2017,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2018,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2019,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2020,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Pakistan,2021,126.9,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2010,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2011,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2012,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2013,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2014,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2015,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2016,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2017,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2018,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2019,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2020,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Palestine,2021,0.0931,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2012,1.6,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2013,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2014,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2015,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2016,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2017,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2018,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2019,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2020,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Paraguay,2021,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2010,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2011,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2012,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2013,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2014,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2015,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2016,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2017,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2018,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2019,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2020,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Peru,2021,5.663,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2010,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2011,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2012,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2013,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2014,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2015,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2016,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2017,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2018,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2019,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2020,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Philippines,2021,33.28,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2010,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2011,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2012,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2013,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2014,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2015,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2016,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2017,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2018,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2019,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2020,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Poland,2021,0.0314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2010,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2011,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2012,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2013,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2014,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2015,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2016,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2017,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2018,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2019,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2020,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Portugal,2021,2.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2010,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2011,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2012,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2013,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2014,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2015,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2016,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2017,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2018,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2019,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2020,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Puerto Rico,2021,0.0483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2010,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2011,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2012,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2013,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2014,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2015,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2016,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2017,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2018,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2019,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2020,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Qatar,2021,0.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2010,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2011,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2012,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2013,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2014,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2015,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2016,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2017,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2018,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2019,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2020,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Korea,2021,3.932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2010,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2011,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2012,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2013,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2014,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2015,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2016,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2017,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2018,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2019,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2020,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Moldova,2021,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2010,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2011,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2012,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2013,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2014,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2015,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2016,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2017,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2018,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2019,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2020,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Romania,2021,0.379,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2010,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2011,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2012,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2013,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2014,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2015,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2016,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2017,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2018,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2019,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2020,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Russia,2021,9.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2010,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2011,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2012,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2013,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2014,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2015,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2016,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2017,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2018,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2019,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2020,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Rwanda,2021,0.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2010,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2011,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2012,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2013,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2014,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2015,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2016,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2017,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2018,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2019,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2020,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Kitts and Nevis,2021,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2010,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2011,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2012,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2013,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2014,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2015,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2016,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2017,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2018,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2019,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2020,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Lucia,2021,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2010,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2011,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2012,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2013,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2014,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2015,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2016,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2017,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2018,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2019,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2020,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saint Vincent and the Grenadines,2021,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2010,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2011,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2012,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2013,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2014,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2015,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2016,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2017,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2018,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2019,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2020,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Saudi Arabia,2021,11.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2010,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2011,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2012,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2013,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2014,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2015,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2016,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2017,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2018,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2019,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2020,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Senegal,2021,0.9494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2011,0.0212,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2012,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2013,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2014,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2015,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2016,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2017,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2018,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2019,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2020,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Serbia,2021,0.0212,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2010,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2011,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2012,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2013,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2014,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2015,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2016,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2017,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2018,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2019,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2020,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Seychelles,2021,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2010,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2011,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2012,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2013,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2014,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2015,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2016,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2017,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2018,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2019,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2020,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sierra Leone,2021,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2010,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2011,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2012,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2013,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2014,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2015,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2016,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2017,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2018,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2019,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2020,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovakia,2021,0.0029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2010,0.0006,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2011,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2012,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2013,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2014,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2015,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2016,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2017,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2018,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2019,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2020,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Slovenia,2021,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2010,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2011,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2012,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2013,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2014,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2015,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2016,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2017,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2018,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2019,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2020,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Somalia,2021,0.263,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2010,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2011,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2012,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2013,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2014,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2015,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2016,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2017,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2018,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2019,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2020,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,South Africa,2021,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2010,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2011,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2012,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2013,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2014,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2015,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2016,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2017,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2018,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2019,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2020,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Spain,2021,14.06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2010,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2011,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2012,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2013,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2014,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2015,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2016,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2017,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2018,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2019,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2020,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sri Lanka,2021,3.819,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2010,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2011,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2012,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2013,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2014,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2015,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2016,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2017,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2018,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2019,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2020,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Suriname,2021,0.167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2010,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2011,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2012,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2013,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2014,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2015,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2016,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2017,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2018,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2019,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2020,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Sweden,2021,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2010,0.041,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2011,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2012,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2013,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2014,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2015,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2016,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2017,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2018,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2019,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2020,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Switzerland,2021,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2010,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2011,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2012,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2013,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2014,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2015,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2016,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2017,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2018,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2019,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2020,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Syria,2021,7.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2010,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2011,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2012,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2013,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2014,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2015,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2016,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2017,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2018,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2019,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2020,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tajikistan,2021,4.281,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2010,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2011,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2012,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2013,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2014,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2015,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2016,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2017,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2018,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2019,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2020,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Thailand,2021,34.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2010,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2011,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2012,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2013,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2014,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2015,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2016,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2017,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2018,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2019,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2020,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,East Timor,2021,0.192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2010,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2011,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2012,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2013,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2014,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2015,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2016,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2017,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2018,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2019,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2020,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Togo,2021,0.0066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2010,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2011,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2012,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2013,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2014,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2015,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2016,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2017,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2018,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2019,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2020,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Trinidad and Tobago,2021,0.0091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2010,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2011,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2012,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2013,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2014,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2015,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2016,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2017,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2018,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2019,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2020,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Tunisia,2021,1.552,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2010,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2011,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2012,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2013,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2014,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2015,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2016,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2017,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2018,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2019,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2020,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkmenistan,2021,13.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2010,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2011,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2012,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2013,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2014,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2015,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2016,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2017,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2018,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2019,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2020,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Turkey,2021,25.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2010,0.0626,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2011,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2012,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2013,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2014,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2015,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2016,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2017,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2018,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2019,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2020,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uganda,2021,0.0626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2010,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2011,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2012,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2013,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2014,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2015,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2016,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2017,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2018,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2019,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2020,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Ukraine,2021,0.8258,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2010,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2011,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2012,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2013,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2014,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2015,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2016,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2017,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2018,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2019,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2020,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Arab Emirates,2021,1.815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2010,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2011,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2012,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2013,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2014,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2015,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2016,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2017,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2018,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2019,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2020,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Kingdom,2021,0.0354,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2010,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2011,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2012,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2013,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2014,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2015,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2016,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2017,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2018,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2019,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2020,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United Republic of Tanzania,2021,0.973,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2010,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2011,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2012,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2013,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2014,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2015,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2016,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2017,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2018,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2019,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2020,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,United States of America,2021,108.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2010,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2011,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2012,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2013,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2014,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2015,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2016,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2017,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2018,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2019,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2020,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uruguay,2021,1.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2010,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2011,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2012,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2013,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2014,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2015,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2016,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2017,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2018,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2019,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2020,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Uzbekistan,2021,22.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2010,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2011,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2012,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2013,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2014,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2015,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2016,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2017,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2018,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2019,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2020,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Venezuela,2021,6.472,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2010,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2011,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2012,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2013,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2014,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2015,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2016,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2017,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2018,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2019,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2020,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Vietnam,2021,29.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2010,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2011,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2012,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2013,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2014,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2015,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2016,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2017,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2018,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2019,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2020,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Yemen,2021,1.773,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2010,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2011,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2012,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2013,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2014,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2015,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2016,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2017,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2018,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2019,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2020,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zambia,2021,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2010,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2011,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2012,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2013,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2014,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2015,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2016,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2017,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2018,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2019,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2020,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water requirement,Zimbabwe,2021,0.836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2010,0.535555556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2011,0.540044444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2012,0.544533333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2013,0.549022222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2014,0.553511111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2015,0.558,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2016,0.559,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2017,0.609,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2018,0.566,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2019,0.61,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2020,0.545,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Albania,2021,0.564,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2010,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2011,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2012,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2013,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2014,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2015,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2016,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2017,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2018,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2019,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2020,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Algeria,2021,3.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2010,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2011,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2012,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2013,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2014,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2015,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2016,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2017,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2018,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2019,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2020,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Angola,2021,0.1467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2010,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2011,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2012,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2013,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2014,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2015,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2016,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2017,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2018,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2019,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2020,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Antigua and Barbuda,2021,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2011,1.145,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2012,1.496,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2013,1.489,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2014,1.447,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2015,1.932,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2016,1.873,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2017,1.612,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2018,1.39,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2019,1.38,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2020,1.306,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Armenia,2021,1.562,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2010,6.596,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2011,8.367333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2012,10.138666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2013,11.91,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2014,9.649,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2015,8.408,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2016,10.16,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2017,10.989261,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2018,11.65777815,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2019,9.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2020,7.57,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Australia,2021,10.12,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2010,0.018,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2011,0.023666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2012,0.029333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2013,0.035,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2014,0.040666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2015,0.046333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2016,0.052,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2017,0.057666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2018,0.063333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2019,0.069,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2020,0.069,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Austria,2021,0.069,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Azerbaijan,2015,10.654,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Azerbaijan,2016,10.82,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Azerbaijan,2017,11.161,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Azerbaijan,2018,11.237,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Azerbaijan,2019,11.614,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Azerbaijan,2020,7.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Azerbaijan,2021,7.575,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2010,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2011,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2012,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2013,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2014,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2015,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2016,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2017,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2018,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2019,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2020,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Barbados,2021,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Belarus,2014,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Belarus,2015,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Belarus,2016,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Belarus,2017,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Belarus,2018,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Belarus,2019,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Belarus,2020,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Belarus,2021,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2010,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2011,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2012,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2013,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2014,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2015,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2016,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2017,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2018,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2019,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2020,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Benin,2021,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2010,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2011,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2012,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2013,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2014,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2015,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2016,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2017,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2018,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2019,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2020,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bolivia,2021,1.777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2010,0.021714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2011,0.020985714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2012,0.020257143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2013,0.019528571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2014,0.0188,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2015,0.0219,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2016,0.0329,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2017,0.0268,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2018,0.038,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2019,0.03459,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2020,0.0402008,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Botswana,2021,0.0370468,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brazil,2014,30.17,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brazil,2015,29.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brazil,2016,35.22,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brazil,2017,34.17,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brazil,2018,33.81,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brazil,2019,37.52,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brazil,2020,36.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brazil,2021,36.14,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2010,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2011,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2012,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2013,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2014,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2015,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2016,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2017,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2018,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2019,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2020,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Brunei,2021,0.0053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2010,0.297,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2011,0.3155,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2012,0.3996,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2013,0.4837,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2014,0.5678,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2015,0.6519,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2016,0.736,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2017,0.647,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2018,0.55,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2019,0.617,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2020,0.589,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Bulgaria,2021,0.589,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2010,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2011,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2012,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2013,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2014,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2015,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2016,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2017,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2018,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2019,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2020,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burkina Faso,2021,0.4207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2010,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2011,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2012,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2013,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2014,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2015,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2016,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2017,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2018,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2019,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2020,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Burundi,2021,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2010,0.050809592,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2011,0.055111191,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2012,0.059412789,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2013,0.063714388,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2014,0.068015987,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2015,0.072317585,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2016,0.076619184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2017,0.080920783,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2018,0.085222381,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2019,0.08952398,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2020,0.11320075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cape Verde,2021,0.10926951,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2010,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2011,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2012,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2013,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2014,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2015,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2016,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2017,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2018,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2019,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2020,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cambodia,2021,1.928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2010,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2011,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2012,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2013,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2014,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2015,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2016,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2017,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2018,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2019,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2020,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cameroon,2021,0.737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2010,0.83815,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2011,1.017946,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2012,1.692353,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2013,1.197935,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2014,1.679021,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2015,1.794775,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2016,2.054082,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2017,2.198281,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2018,2.95,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2019,2.3655,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2020,1.781,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Canada,2021,1.781,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2010,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2011,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2012,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2013,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2014,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2015,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2016,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2017,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2018,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2019,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2020,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Central African Republic,2021,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2010,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2011,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2012,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2013,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2014,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2015,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2016,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2017,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2018,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2019,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2020,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chad,2021,0.6722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2010,12.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2011,11.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2012,10.88,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2013,9.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2014,8.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2015,8.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2016,7.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2017,7.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2018,7.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2019,7.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2020,7.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Chile,2021,7.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2010,5.867,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2011,7.555833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2012,9.244666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2013,10.9335,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2014,12.622333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2015,14.311166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2016,16.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2017,17.499747799,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2018,18.999495598,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2019,18.98746016,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2020,19.00447677,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Colombia,2021,19.69463297,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2012,1.055985,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2013,1.006211,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2014,1.075627,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2015,1.294393,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2016,1.109498,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2017,2.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2018,2.040646432,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2019,2.01205784,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2020,2.005509024,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Costa Rica,2021,2.009581968,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2010,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2011,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2012,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2013,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2014,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2015,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2016,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2017,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2018,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2019,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2020,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Croatia,2021,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2010,0.15,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2011,0.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2012,0.17,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2013,0.1666,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2014,0.175,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2015,0.194,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2016,0.199,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2017,0.185,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2018,0.174,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2019,0.165,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2020,0.171,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Cyprus,2021,0.179,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2010,0.023966667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2011,0.024633333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2012,0.0253,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2013,0.0139,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2014,0.02695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2015,0.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2016,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2017,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2018,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2019,0.022,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2020,0.018,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Czech Republic,2021,0.016,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2010,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2011,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2012,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2013,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2014,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2015,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2016,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2017,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2018,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2019,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2020,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ivory Coast,2021,0.5953,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2010,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2011,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2012,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2013,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2014,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2015,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2016,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2017,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2018,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2019,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2020,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Democratic Republic of the Congo,2021,0.0719,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2010,0.154533333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2011,0.125766667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2012,0.097,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2013,0.108234333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2014,0.119468667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2015,0.130703,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2016,0.17964,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2017,0.2013,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2018,0.374349,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2019,0.240865,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2020,0.271287,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Denmark,2021,0.271287,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2010,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2011,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2012,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2013,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2014,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2015,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2016,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2017,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2018,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2019,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2020,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Djibouti,2021,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2010,4.879,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2011,5.1892,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2012,5.4994,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2013,5.8096,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2014,6.1198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2015,6.43,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2016,6.187666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2017,5.945333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2018,5.703,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2019,5.549,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2020,5.264,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Dominican Republic,2021,5.264,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2010,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2011,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2012,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2013,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2014,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2015,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2016,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2017,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2018,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2019,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2020,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ecuador,2021,8.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2010,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2011,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2012,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2013,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2014,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2015,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2016,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2017,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2018,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2019,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2020,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,El Salvador,2021,1.389,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2010,0.0001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2011,0.000116076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2012,0.000132152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2013,0.000148228,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2014,0.000164304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2015,0.00018038,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2016,0.0002051,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2017,0.0001805,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2018,0.0001715,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2019,5.9e-05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2020,4.1872e-05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Estonia,2021,8.1548e-05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2010,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2011,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2012,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2013,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2014,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2015,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2016,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2017,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2018,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2019,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2020,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Eswatini,2021,0.993,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ethiopia,2016,9.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ethiopia,2017,9.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ethiopia,2018,9.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ethiopia,2019,9.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ethiopia,2020,9.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ethiopia,2021,9.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2010,0.204285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2011,0.237142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2012,0.27,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2013,0.302857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2014,0.335714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2015,0.368571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2016,0.401428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2017,0.434285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2018,0.467142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2019,0.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2020,0.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Finland,2021,0.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2010,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2011,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2012,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2013,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2014,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2015,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2016,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2017,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2018,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2019,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2020,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,France,2021,2.588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2010,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2011,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2012,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2013,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2014,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2015,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2016,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2017,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2018,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2019,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2020,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gabon,2021,0.0403,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2010,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2011,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2012,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2013,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2014,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2015,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2016,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2017,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2018,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2019,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2020,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Gambia,2021,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2010,0.670359091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2011,0.631030909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2012,0.591702727,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2013,0.552374545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2014,0.513046364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2015,0.473718182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2016,0.43439,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2017,0.47347,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2018,0.44025,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2019,0.575,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2020,0.69625,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Georgia,2021,0.73066,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2010,0.1796,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2011,0.210166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2012,0.240733333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2013,0.2713,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2014,0.301866667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2015,0.332433333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2016,0.363,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2017,0.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2018,0.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2019,0.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2020,0.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Germany,2021,0.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2010,8.0155,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2011,7.868,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2012,7.887875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2013,7.90775,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2014,7.927625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2015,7.9475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2016,7.967375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2017,7.98725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2018,8.007125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2019,8.027,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2020,8.027,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Greece,2021,8.027,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2010,0.002123529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2011,0.002117647,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2012,0.002111765,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2013,0.002105882,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2014,0.0021,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2015,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2016,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2017,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2018,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2019,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2020,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Grenada,2021,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2010,0.455482353,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2011,0.473547059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2012,0.491611765,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2013,0.509676471,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2014,0.527741176,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2015,0.545805882,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2016,0.563870588,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2017,0.581935294,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2018,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2019,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2020,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guinea,2021,0.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2010,1.363,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2011,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2012,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2013,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2014,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2015,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2016,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2017,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2018,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2019,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2020,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Guyana,2021,1.363,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2010,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2011,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2012,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2013,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2014,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2015,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2016,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2017,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2018,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2019,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2020,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Haiti,2021,1.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2010,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2011,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2012,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2013,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2014,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2015,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2016,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2017,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2018,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2019,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2020,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Honduras,2021,1.153,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2010,0.055,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2011,0.1052,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2012,0.192,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2013,0.2823,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2014,0.173,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2015,0.1928,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2016,0.1158,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2017,0.132937768,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2018,0.121448896,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2019,0.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2020,0.156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Hungary,2021,0.156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Iceland,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Indonesia,2014,166.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Indonesia,2015,171.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Indonesia,2016,177.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Indonesia,2017,177.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Indonesia,2018,177.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Indonesia,2019,177.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Indonesia,2020,177.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Indonesia,2021,177.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2010,0.00156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2011,0.001415,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2012,0.00127,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2013,0.001125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2014,0.00098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2015,0.000835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2016,0.00069,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2017,0.000545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2018,0.0004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2019,0.0005,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2020,0.0007,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ireland,2021,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2010,14.445,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2011,14.963333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2012,15.481666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2013,16.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2014,16.066,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2015,16.132,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2016,16.198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2017,16.264,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2018,16.33,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2019,16.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2020,16.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Italy,2021,16.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2010,0.376857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2011,0.353142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2012,0.329428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2013,0.305714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2014,0.282,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2015,0.133,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2016,0.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2017,0.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2018,0.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2019,0.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2020,0.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jamaica,2021,0.11,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2010,53.90375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2011,53.8175,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2012,53.73125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2013,53.645,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2014,53.55875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2015,53.4725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2016,53.38625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2017,53.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2018,53.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2019,52.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2020,52.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Japan,2021,52.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jordan,2014,0.5395,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jordan,2015,0.5068,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jordan,2016,0.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jordan,2017,0.5447,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jordan,2018,0.5553,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jordan,2019,0.56054,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jordan,2020,0.56054,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Jordan,2021,0.56054,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2011,11.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2012,11.32,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2013,11.63,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2014,11.68,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2015,10.16,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2016,11.95,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2017,11.704,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2018,11.458,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2019,12.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2020,12.29,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kazakhstan,2021,12.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2010,1.602,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2011,1.4115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2012,1.221,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2013,1.0305,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2014,0.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2015,0.6495,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2016,0.459,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2017,0.459,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2018,0.459,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2019,0.459,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2020,0.459,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kenya,2021,0.459,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kuwait,2015,0.686,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kuwait,2016,0.7213,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kuwait,2017,0.7768,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kuwait,2018,0.7768,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kuwait,2019,0.7768,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kuwait,2020,0.7768,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Kuwait,2021,0.7768,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2010,5.213555556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2011,5.617666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2012,6.021777778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2013,6.425888889,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2014,6.83,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2015,7.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2016,6.92,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2017,6.58,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2018,6.58,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2019,6.58,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2020,6.58,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Laos,2021,6.58,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Latvia,2014,0.0002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Latvia,2015,0.0003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Latvia,2016,0.000587619,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Latvia,2017,0.000366128,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Latvia,2018,0.000416,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Latvia,2019,0.00037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Latvia,2020,0.000359,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Latvia,2021,0.000359,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2010,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2011,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2012,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2013,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2014,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2015,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2016,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2017,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2018,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2019,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2020,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lesotho,2021,0.0038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2010,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2011,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2012,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2013,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2014,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2015,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2016,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2017,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2018,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2019,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2020,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Liberia,2021,0.0123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2010,0.00095,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2011,0.0009,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2012,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2013,0.0009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2014,0.0009,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2015,0.0009,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2016,0.0007,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2017,0.0005,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2018,0.00055,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2019,0.00055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2020,0.00055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Lithuania,2021,0.00055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2010,4.1177e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2011,3.0588e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2012,2e-05,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2013,0.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2014,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2015,0.0001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Luxembourg,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2010,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2011,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2012,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2013,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2014,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2015,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2016,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2017,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2018,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2019,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2020,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Madagascar,2021,13.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2010,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2011,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2012,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2013,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2014,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2015,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2016,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2017,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2018,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2019,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2020,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malawi,2021,1.166,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2010,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2011,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2012,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2013,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2014,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2015,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2016,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2017,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2018,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2019,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2020,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malaysia,2021,2.505,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2010,4.34e-07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2011,6.51e-07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2012,8.68e-07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2013,1.085e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2014,1.302e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2015,1.519e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2016,1.736e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2017,1.953e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2018,2.17e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2019,2.387e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2020,5.66e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Maldives,2021,8.932e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2010,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2011,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2012,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2013,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2014,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2015,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2016,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2017,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2018,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2019,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2020,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mali,2021,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2010,0.019033333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2011,0.021566667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2012,0.0241,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2013,0.029,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2014,0.0283,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2015,0.0254,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2016,0.0255,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2017,0.027,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2018,0.023946128,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2019,0.021758706,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2020,0.022727202,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Malta,2021,0.02133571,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2010,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2011,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2012,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2013,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2014,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2015,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2016,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2017,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2018,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2019,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2020,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mauritania,2021,1.223,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2010,60.7065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2011,61.36975,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2012,62.033,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2013,62.69625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2014,63.3595,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2015,64.02275,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2016,64.686,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2017,65.422,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2018,65.87,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2019,66.25,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2020,66.42,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mexico,2021,66.666,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2010,0.1358,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2011,0.1426,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2012,0.1494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2013,0.1562,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2014,0.163,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2015,0.1698,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2016,0.1261,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2017,0.1261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2018,0.1261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2019,0.1261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2020,0.1261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mongolia,2021,0.1261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2010,0.8925,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2011,0.915,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2012,0.9375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2013,0.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2014,0.9825,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2015,1.005,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2016,1.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2017,1.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2018,1.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2019,1.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2020,1.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Mozambique,2021,1.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2010,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2011,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2012,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2013,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2014,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2015,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2016,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2017,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2018,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2019,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2020,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Namibia,2021,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2010,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2011,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2012,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2013,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2014,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2015,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2016,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2017,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2018,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2019,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2020,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nepal,2021,9.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2010,0.0823,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2011,0.05265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2012,0.023,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2013,0.038333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2014,0.053666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2015,0.069,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2016,0.0381,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2017,0.0802,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2018,0.2646,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2019,0.215259,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2020,0.2685,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Netherlands,2021,0.044612,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2010,2.8,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2011,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2012,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2013,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2014,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2015,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2016,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2017,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2018,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2019,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2020,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,New Zealand,2021,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2011,1.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2012,1.139232112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2013,1.168464224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2014,1.197696336,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2015,1.226928449,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2016,1.256160561,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2017,1.285392673,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2018,1.314624785,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2019,1.314624785,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2020,1.314624785,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nicaragua,2021,1.314624785,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2010,0.939,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2011,0.9955,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2012,1.052,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2013,1.1085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2014,1.165,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2015,1.358,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2016,1.363,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2017,1.366,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2018,1.366,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2019,1.366,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2020,1.366,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Niger,2021,1.366,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2010,4.549,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2011,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2012,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2013,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2014,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2015,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2016,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2017,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2018,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2019,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2020,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Nigeria,2021,4.549,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2010,0.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2011,0.293,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2012,1.353,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2013,0.156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2014,0.2093,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2015,0.139,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2016,0.139,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2017,0.139,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2018,0.139,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2019,0.139,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2020,0.139,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Macedonia,2021,0.139,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2010,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2011,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2012,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2013,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2014,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2015,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2016,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2017,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2018,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2019,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2020,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Norway,2021,0.1128,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2013,1.607,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2014,1.587,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2015,1.567,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2016,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2017,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2018,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2019,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2020,1.547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Oman,2021,1.547,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2010,0.446,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2011,0.4509,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2012,0.4558,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2013,0.4607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2014,0.4656,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2015,0.4471,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2016,0.4461,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2017,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2018,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2019,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2020,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Panama,2021,0.4461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Peru,2019,32.79,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Peru,2020,32.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Peru,2021,32.79,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2010,66.95,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2011,66.96,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2012,66.98,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2013,66.98,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2014,67.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2015,67.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2016,67.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2017,67.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2018,67.04726,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2019,67.07814883,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2020,67.12460829,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Philippines,2021,67.13121509,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2010,0.089833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2011,0.084966667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2012,0.0801,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2013,0.08055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2014,0.081,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2015,0.085,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2016,0.089,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2017,0.081,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2018,0.084,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2019,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2020,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Poland,2021,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2010,3.7205625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2011,3.674125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2012,3.6276875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2013,3.58125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2014,3.5348125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2015,3.488375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2016,3.4419375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2017,3.3955,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2018,3.39545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2019,3.39545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2020,3.39545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Portugal,2021,3.39545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2010,0.0528,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2011,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2012,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2013,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2014,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2015,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2016,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2017,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2018,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2019,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2020,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Puerto Rico,2021,0.0528,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Qatar,2021,0.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2010,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2011,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2012,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2013,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2014,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2015,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2016,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2017,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2018,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2019,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2020,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Korea,2021,14.49,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Moldova,2017,0.038,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Moldova,2018,0.039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Moldova,2019,0.039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Moldova,2020,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Moldova,2021,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2010,0.611,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2011,0.491,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2012,0.371,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2013,0.343,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2014,0.226,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2015,0.364,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2016,0.33,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2017,0.441,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2018,0.5015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2019,0.562,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2020,1.114,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Romania,2021,1.255,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Russia,2015,10.96,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Russia,2016,10.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Russia,2017,12.46,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Russia,2018,7.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Russia,2019,7.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Russia,2020,7.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Russia,2021,7.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Rwanda,2019,0.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Rwanda,2020,0.36,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Rwanda,2021,0.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2010,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2011,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2012,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2013,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2014,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2015,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2016,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2017,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2018,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2019,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2020,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Kitts and Nevis,2021,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2010,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2011,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2012,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2013,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2014,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2015,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2016,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2017,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2018,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2019,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2020,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Saint Vincent and the Grenadines,2021,0.0101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sao Tome and Principe,2016,0.0224,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sao Tome and Principe,2017,0.0224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sao Tome and Principe,2018,0.0224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sao Tome and Principe,2019,0.0224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sao Tome and Principe,2020,0.0224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sao Tome and Principe,2021,0.0224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Senegal,2017,2.15238,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Senegal,2018,2.70611,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Senegal,2019,2.70611,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Senegal,2020,2.70611,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Senegal,2021,2.70611,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2010,0.0548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2011,0.0661,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2012,0.07695,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2013,0.0878,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2014,0.0506,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2015,0.0885,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2016,0.0453,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2017,0.0753,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2018,0.0545,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2019,0.0676,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2020,0.0691,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Serbia,2021,0.092,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2010,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2011,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2012,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2013,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2014,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2015,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2016,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2017,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2018,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2019,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2020,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sierra Leone,2021,0.0457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2010,0.0068,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2011,0.01395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2012,0.0211,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2013,0.01735,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2014,0.0136,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2015,0.0216,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2016,0.0115,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2017,0.0224,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2018,0.0161,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2019,0.0194,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2020,0.0196,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovakia,2021,0.020287,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2010,0.0016,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2011,0.00195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2012,0.0023,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2013,0.0036,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2014,0.0016,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2015,0.0035,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2016,0.0033,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2017,0.003898,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2018,0.003119,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2019,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2020,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Slovenia,2021,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2013,9.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2014,10.275,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2015,11.25,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2016,11.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2017,11.29,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2018,11.38,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2019,11.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2020,11.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,South Africa,2021,11.922,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2010,21.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2011,22.335,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2012,23.37,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2013,21.69,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2014,20.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2015,18.872,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2016,18.645,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2017,18.109,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2018,17.574,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2019,17.467,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2020,17.36,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Spain,2021,17.36,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2010,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2011,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2012,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2013,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2014,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2015,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2016,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2017,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2018,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2019,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2020,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Suriname,2021,0.4311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2010,0.062,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2011,0.0592,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2012,0.0564,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2013,0.0536,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2014,0.0508,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2015,0.048,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2016,0.0532,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2017,0.0584,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2018,0.0636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2019,0.0688,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2020,0.074,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Sweden,2021,0.074,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2012,0.1356,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2013,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2014,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2015,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2016,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2017,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2018,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2019,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2020,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Switzerland,2021,0.1356,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tajikistan,2018,7.378,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tajikistan,2019,7.378,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tajikistan,2020,7.378,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tajikistan,2021,7.378,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2010,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2011,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2012,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2013,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2014,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2015,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2016,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2017,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2018,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2019,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2020,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Togo,2021,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tunisia,2016,2.9789,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tunisia,2017,2.691,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tunisia,2018,2.9326,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tunisia,2019,2.9326,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tunisia,2020,2.9326,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Tunisia,2021,2.9326,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2010,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2011,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2012,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2013,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2014,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2015,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2016,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2017,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2018,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2019,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2020,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkmenistan,2021,26.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkey,2014,35.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkey,2015,40.61,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkey,2016,43.06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkey,2017,42.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkey,2018,43.95,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkey,2019,46.57,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkey,2020,46.09,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Turkey,2021,46.09,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ukraine,2014,2.471,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ukraine,2015,2.317,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ukraine,2016,2.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ukraine,2017,4.052,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ukraine,2018,4.052,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ukraine,2019,3.727,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ukraine,2020,2.668,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Ukraine,2021,2.668,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Arab Emirates,2016,2.385705877,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Arab Emirates,2017,2.346532889,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Arab Emirates,2018,2.40559821,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Arab Emirates,2019,2.354595795,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Arab Emirates,2020,2.292935715,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Arab Emirates,2021,2.21562,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2010,0.0975,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2011,0.1178,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2012,0.049,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2013,0.064,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2014,0.079,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2015,0.094,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2016,0.084,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2017,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2018,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2019,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2020,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Kingdom,2021,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2010,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2011,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2012,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2013,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2014,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2015,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2016,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2017,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2018,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2019,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2020,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United Republic of Tanzania,2021,4.425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2010,159.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2011,160.04,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2012,160.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2013,161.52,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2014,162.26,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2015,163.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2016,152.974833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2017,142.949666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2018,132.9245,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2019,122.899333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2020,112.874166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,United States of America,2021,102.849,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Uzbekistan,2014,46.86,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Uzbekistan,2015,49.97,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Uzbekistan,2016,49.43,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Uzbekistan,2017,53.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Uzbekistan,2018,51.1315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Uzbekistan,2019,48.563,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Uzbekistan,2020,45.93,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Uzbekistan,2021,38.452,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2010,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2011,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2012,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2013,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2014,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2015,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2016,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2017,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2018,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2019,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2020,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Venezuela,2021,16.71,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2010,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2011,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2012,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2013,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2014,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2015,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2016,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2017,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2018,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2019,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2020,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zambia,2021,1.152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zimbabwe,2015,2.573,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zimbabwe,2016,2.611,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zimbabwe,2017,2.662,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zimbabwe,2018,2.93312,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zimbabwe,2019,3.497043206,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zimbabwe,2020,4.1896512,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Irrigation water withdrawal,Zimbabwe,2021,4.1896512,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2010,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2011,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2012,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2013,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2014,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2015,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2016,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2017,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2018,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2019,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2020,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Afghanistan,2021,0.2034,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2010,0.42065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2011,0.39252,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2012,0.36439,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2013,0.33626,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2014,0.30813,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2015,0.28,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2016,0.27,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2017,0.283,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2018,0.207,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2019,0.238,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2020,0.225,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Albania,2021,0.222,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2010,2.8035,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2011,2.91175,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2012,3.02,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2013,3.046666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2014,3.073333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2015,3.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2016,3.39,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2017,3.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2018,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2019,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2020,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Algeria,2021,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2010,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2011,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2012,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2013,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2014,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2015,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2016,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2017,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2018,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2019,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2020,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Angola,2021,0.3195,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2010,0.006657143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2011,0.006928571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2012,0.0072,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2013,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2014,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2015,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2016,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2017,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2018,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2019,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2020,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Antigua and Barbuda,2021,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2010,5.769375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2011,5.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2012,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2013,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2014,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2015,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2016,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2017,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2018,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2019,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2020,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Argentina,2021,5.85,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2010,0.65092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2011,0.6029,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2012,0.6005,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2013,0.5411,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2014,0.545,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2015,0.489,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2016,0.5302,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2017,0.67,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2018,0.702,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2019,0.615,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2020,0.653,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Armenia,2021,0.601,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2010,3.738,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2011,3.26,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2012,3.744,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2013,4.259,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2014,4.167,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2015,4.015,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2016,3.913,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2017,2.611483,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2018,2.297321186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2019,2.49,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2020,2.32,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Australia,2021,2.32,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2010,0.72,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2011,0.729555556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2012,0.739111111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2013,0.748666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2014,0.758222222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2015,0.767777778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2016,0.777333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2017,0.786888889,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2018,0.796444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2019,0.806,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2020,0.806,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Austria,2021,0.806,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2010,0.382,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2011,0.48,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2012,0.494,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2013,0.484,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2014,0.502,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2015,0.454,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2016,0.416,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2017,0.396,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2018,0.423,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2019,0.409,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2020,0.431,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Azerbaijan,2021,0.408,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2010,0.029615385,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2011,0.030076923,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2012,0.030538461,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2013,0.031,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2014,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2015,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2016,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2017,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2018,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2019,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2020,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,The Bahamas,2021,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2010,0.238736364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2011,0.247427273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2012,0.256118182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2013,0.264809091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2014,0.2735,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2015,0.2769,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2016,0.2756,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2017,0.2756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2018,0.2756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2019,0.2756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2020,0.2756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bahrain,2021,0.2756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2010,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2011,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2012,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2013,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2014,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2015,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2016,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2017,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2018,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2019,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2020,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bangladesh,2021,3.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2010,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2011,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2012,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2013,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2014,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2015,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2016,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2017,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2018,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2019,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2020,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Barbados,2021,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2010,0.5895,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2011,0.575333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2012,0.561166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2013,0.547,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2014,0.734,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2015,0.706,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2016,0.566,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2017,0.523,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2018,0.533,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2019,0.553,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2020,0.549,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belarus,2021,0.599,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2010,0.712333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2011,0.718666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2012,0.725,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2013,0.733,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2014,0.721,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2015,0.739,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2016,0.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2017,0.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2018,0.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2019,0.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2020,0.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belgium,2021,0.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2010,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2011,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2012,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2013,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2014,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2015,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2016,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2017,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2018,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2019,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2020,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Belize,2021,0.0114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2010,0.119428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2011,0.128142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2012,0.136857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2013,0.145571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2014,0.154285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2015,0.163,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2016,0.15,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2017,0.145,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2018,0.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2019,0.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2020,0.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Benin,2021,0.145,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2010,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2011,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2012,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2013,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2014,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2015,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2016,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2017,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2018,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2019,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2020,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bhutan,2021,0.017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2010,0.14762644,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2011,0.15925288,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2012,0.17087932,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2013,0.18250576,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2014,0.1941322,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2015,0.20575864,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2016,0.21738508,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2017,0.22901152,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2018,0.24063796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2019,0.2522644,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2020,0.2571419,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bolivia,2021,0.2529101,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2010,0.3684,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2011,0.3593,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2012,0.3593,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2013,0.3548,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2014,0.3427,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2015,0.344,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2016,0.3545,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2017,0.3608,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2018,0.319,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2019,0.3119,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2020,0.309,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bosnia and Herzegovina,2021,0.305242,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2010,0.089966667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2011,0.0904,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2012,0.0837,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2013,0.0874,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2014,0.0911,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2015,0.0885,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2016,0.0963,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2017,0.1006,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2018,0.0972,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2019,0.0992,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2020,0.1092014,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Botswana,2021,0.1280716,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2010,17.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2011,16.985,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2012,16.76,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2013,16.535,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2014,16.31,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2015,16.466,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2016,16.59,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2017,16.74,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2018,15.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2019,15.98,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2020,16.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brazil,2021,16.26,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2010,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2011,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2012,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2013,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2014,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2015,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2016,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2017,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2018,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2019,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2020,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Brunei,2021,0.1515,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2010,0.9444,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2011,0.9301,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2012,0.9483,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2013,0.9422,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2014,0.8872,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2015,0.8996,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2016,0.8938,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2017,0.905,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2018,0.865,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2019,0.867,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2020,0.838,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Bulgaria,2021,0.838,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2010,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2011,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2012,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2013,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2014,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2015,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2016,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2017,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2018,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2019,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2020,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burkina Faso,2021,0.3756,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2010,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2011,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2012,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2013,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2014,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2015,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2016,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2017,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2018,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2019,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2020,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Burundi,2021,0.0431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2010,0.08084491,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2011,0.0896499,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2012,0.09845489,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2013,0.10725988,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2014,0.11606487,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2015,0.12486986,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2016,0.13367485,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2017,0.14247984,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2018,0.15128483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2019,0.16008982,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2020,0.17451457,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cape Verde,2021,0.14202642,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2010,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2011,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2012,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2013,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2014,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2015,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2016,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2017,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2018,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2019,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2020,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cambodia,2021,0.098,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2010,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2011,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2012,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2013,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2014,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2015,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2016,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2017,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2018,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2019,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2020,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cameroon,2021,0.2468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2010,5.321757986,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2011,5.124,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2012,5.0785,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2013,5.033,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2014,5.027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2015,5.021,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2016,4.9545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2017,4.888,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2018,4.877,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2019,4.866,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2020,4.866,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Canada,2021,4.866,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2010,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2011,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2012,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2013,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2014,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2015,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2016,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2017,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2018,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2019,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2020,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Central African Republic,2021,0.0601,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2010,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2011,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2012,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2013,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2014,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2015,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2016,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2017,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2018,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2019,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2020,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chad,2021,0.1037,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2010,1.2762,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2011,1.2785,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2012,1.2808,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2013,1.2831,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2014,1.2854,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2015,1.2877,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2016,1.29,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2017,1.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2018,1.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2019,1.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2020,1.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Chile,2021,1.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2010,76.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2011,79.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2012,72.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2013,75.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2014,76.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2015,79.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2016,96.42,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2017,100.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2018,106.08,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2019,112.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2020,117.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,China,2021,117.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2010,3.381428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2011,3.505142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2012,3.628857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2013,3.752571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2014,3.876285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2015,4.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2016,3.49,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2017,3.5598,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2018,3.587814172,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2019,3.266000424,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2020,3.23199138,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Colombia,2021,3.22817374,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2010,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2011,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2012,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2013,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2014,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2015,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2016,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2017,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2018,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2019,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2020,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Comoros,2021,0.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2010,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2011,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2012,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2013,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2014,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2015,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2016,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2017,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2018,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2019,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2020,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Republic of Congo,2021,0.0637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2010,0.602743733,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2011,0.590877867,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2012,0.579012,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2013,0.5954191,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2014,0.6315322,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2015,0.6509126,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2016,0.5599032,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2017,0.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2018,0.729019131,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2019,0.838537829,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2020,0.8282193,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Costa Rica,2021,1.1086,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2010,0.5139,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2011,0.517701,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2012,0.493517,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2013,0.490089,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2014,0.445111,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2015,0.464336,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2016,0.46754,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2017,0.448566,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2018,0.441043,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2019,0.438,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2020,0.434,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Croatia,2021,0.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2010,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2011,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2012,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2013,1.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2014,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2015,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2016,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2017,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2018,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2019,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2020,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cuba,2021,1.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2010,0.0494,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2011,0.0529,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2012,0.0788,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2013,0.0841,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2014,0.099,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2015,0.099,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2016,0.113,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2017,0.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2018,0.111,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2019,0.108,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2020,0.103,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Cyprus,2021,0.109,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2010,0.6625,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2011,0.638,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2012,0.6371,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2013,0.6184,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2014,0.602,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2015,0.6129,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2016,0.6056,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2017,0.6166,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2018,0.65,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2019,0.645,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2020,0.629,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Czech Republic,2021,0.627,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2010,0.4604,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2011,0.4253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2012,0.3902,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2013,0.3551,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2014,0.32,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2015,0.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2016,0.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2017,0.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2018,0.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2019,0.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2020,0.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ivory Coast,2021,0.32,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2010,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2011,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2012,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2013,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2014,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2015,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2016,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2017,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2018,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2019,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2020,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,North Korea,2021,0.9028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2010,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2011,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2012,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2013,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2014,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2015,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2016,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2017,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2018,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2019,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2020,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Democratic Republic of the Congo,2021,0.4649,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2010,0.411,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2011,0.4026,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2012,0.4012,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2013,0.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2014,0.3964,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2015,0.389316,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2016,0.386614,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2017,0.383088,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2018,0.398708,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2019,0.387229,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2020,0.400119,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Denmark,2021,0.400119,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2010,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2011,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2012,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2013,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2014,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2015,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2016,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2017,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2018,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2019,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2020,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Djibouti,2021,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2010,0.019,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2011,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2012,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2013,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2014,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2015,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2016,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2017,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2018,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2019,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2020,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominica,2021,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2010,0.855,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2011,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2012,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2013,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2014,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2015,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2016,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2017,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2018,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2019,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2020,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Dominican Republic,2021,0.855,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2010,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2011,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2012,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2013,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2014,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2015,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2016,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2017,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2018,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2019,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2020,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ecuador,2021,1.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2010,9.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2011,9.55,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2012,9.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2013,9.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2014,9.95,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2015,10.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2016,10.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2017,10.75,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2018,10.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2019,10.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2020,10.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Egypt,2021,10.75,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2010,0.416438944,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2011,0.404926733,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2012,0.393414522,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2013,0.381902311,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2014,0.3703901,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2015,0.3777,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2016,0.3761,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2017,0.3887,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2018,0.3858,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2019,0.3891,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2020,0.3891,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,El Salvador,2021,0.3891,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2010,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2011,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2012,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2013,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2014,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2015,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2016,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2017,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2018,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2019,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2020,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Equatorial Guinea,2021,0.0158,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2010,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2011,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2012,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2013,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2014,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2015,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2016,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2017,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2018,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2019,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2020,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eritrea,2021,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2010,0.061,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2011,0.0597,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2012,0.061,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2013,0.0596,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2014,0.0597,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2015,0.0583,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2016,0.061,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2017,0.0594,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2018,0.0621,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2019,0.07804,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2020,0.062942034,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Estonia,2021,0.072079947,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2010,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2011,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2012,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2013,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2014,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2015,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2016,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2017,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2018,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2019,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2020,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Eswatini,2021,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2010,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2011,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2012,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2013,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2014,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2015,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2016,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2017,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2018,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2019,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2020,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ethiopia,2021,0.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2010,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2011,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2012,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2013,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2014,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2015,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2016,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2017,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2018,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2019,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2020,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Fiji,2021,0.0253,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2010,0.40188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2011,0.4,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2012,0.4075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2013,0.415,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2014,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2015,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2016,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2017,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2018,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2019,0.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2020,0.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Finland,2021,0.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2010,5.645,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2011,5.49,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2012,5.38,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2013,5.481,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2014,5.283,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2015,5.216,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2016,5.175,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2017,5.391,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2018,5.316230592,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2019,5.309038842,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2020,5.358234305,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,France,2021,5.358234305,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2010,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2011,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2012,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2013,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2014,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2015,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2016,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2017,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2018,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2019,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2020,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gabon,2021,0.0847,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2010,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2011,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2012,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2013,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2014,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2015,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2016,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2017,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2018,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2019,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2020,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Gambia,2021,0.0412,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2010,0.504868471,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2011,0.577315392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2012,0.649762314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2013,0.722209235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2014,0.794656157,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2015,0.867103079,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2016,0.93955,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2017,0.68126,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2018,0.62311,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2019,0.65538,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2020,0.60625,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Georgia,2021,0.53426,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2010,11.068834,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2011,10.849457,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2012,10.826291,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2013,11.004868,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2014,10.828591,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2015,10.704566,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2016,10.650653,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2017,10.519489,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2018,10.539193,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2019,10.712619,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2020,10.712619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Germany,2021,10.712619,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2010,0.245,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2011,0.249,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2012,0.255,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2013,0.251,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2014,0.2482,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2015,0.2996,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2016,0.2996,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2017,0.2996,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2018,0.2996,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2019,0.2996,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2020,0.2996,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ghana,2021,0.2996,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2010,1.1813,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2011,1.293,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2012,1.526,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2013,1.516,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2014,1.508,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2015,1.499,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2016,1.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2017,1.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2018,1.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2019,1.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2020,1.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Greece,2021,1.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Grenada,2014,0.012,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Grenada,2015,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Grenada,2016,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Grenada,2017,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Grenada,2018,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Grenada,2019,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Grenada,2020,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Grenada,2021,0.012,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2010,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2011,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2012,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2013,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2014,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2015,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2016,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2017,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2018,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2019,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2020,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guatemala,2021,0.835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2010,0.2268,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2011,0.2272,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2012,0.2276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2013,0.228,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2014,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2015,0.2288,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2016,0.2292,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2017,0.2296,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2018,0.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2019,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2020,0.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea,2021,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2010,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2011,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2012,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2013,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2014,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2015,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2016,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2017,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2018,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2019,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2020,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guinea Bissau,2021,0.0341,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2010,0.0613,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2011,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2012,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2013,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2014,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2015,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2016,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2017,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2018,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2019,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2020,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Guyana,2021,0.0613,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2010,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2011,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2012,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2013,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2014,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2015,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2016,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2017,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2018,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2019,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2020,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Haiti,2021,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2010,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2011,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2012,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2013,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2014,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2015,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2016,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2017,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2018,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2019,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2020,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Honduras,2021,0.315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2010,0.7468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2011,0.7314,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2012,0.716,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2013,0.5945,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2014,0.5745,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2015,0.6045,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2016,0.5947,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2017,0.6244573,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2018,0.6278826,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2019,0.64,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2020,0.6574,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Hungary,2021,0.6574,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2010,0.088,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2011,0.093,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2012,0.094,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2013,0.086,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2014,0.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2015,0.08,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2016,0.08,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2017,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2018,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2019,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2020,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iceland,2021,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2010,56.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2011,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2012,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2013,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2014,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2015,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2016,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2017,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2018,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2019,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2020,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,India,2021,56.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2010,18.449090909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2011,19.340909091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2012,20.232727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2013,21.124545455,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2014,22.016363636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2015,22.908181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2016,23.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2017,23.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2018,23.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2019,23.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2020,23.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Indonesia,2021,23.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2010,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2011,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2012,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2013,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2014,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2015,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2016,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2017,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2018,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2019,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2020,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iran,2021,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2010,2.157142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2011,1.942857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2012,1.728571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2013,1.514285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2014,1.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2015,1.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2016,1.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2017,1.15,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2018,1.07,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2019,6.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2020,8.514,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Iraq,2021,6.735,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2010,0.662666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2011,0.645333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2012,0.628,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2013,0.644,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2014,0.66,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2015,0.627,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2016,0.631,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2017,0.80645,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2018,0.9819,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2019,0.985,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2020,0.9855,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ireland,2021,1.012,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2010,0.689,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2011,0.7298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2012,0.7706,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2013,0.8114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2014,0.8522,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2015,0.893,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2016,0.933,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2017,1.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2018,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2019,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2020,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Israel,2021,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2010,9.273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2011,9.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2012,9.451,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2013,9.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2014,9.494,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2015,9.488,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2016,9.402,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2017,9.316,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2018,9.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2019,9.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2020,9.19,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Italy,2021,9.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2010,0.294666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2011,0.296,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2012,0.297333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2013,0.298666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2014,0.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2015,0.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2016,0.14,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2017,0.200173532,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2018,0.260347063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2019,0.320520595,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2020,0.380694127,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jamaica,2021,0.339866896,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2010,15.308571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2011,15.207142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2012,15.105714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2013,15.004285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2014,14.902857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2015,14.801428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2016,14.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2017,14.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2018,15.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2019,14.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2020,14.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Japan,2021,14.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2010,0.352,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2011,0.347,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2012,0.354,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2013,0.381,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2014,0.424,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2015,0.456,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2016,0.4569,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2017,0.4697,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2018,0.4795,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2019,0.49737,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2020,0.49737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Jordan,2021,0.49737,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2010,3.011,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2011,2.527,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2012,2.487,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2013,2.288,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2014,2.354,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2015,2.315,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2016,2.395,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2017,2.347,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2018,3.636,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2019,3.847,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2020,4.6221,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kazakhstan,2021,4.6221,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2010,1.186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2011,1.186147421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2012,1.186294842,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2013,1.186442262,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2014,1.186589683,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2015,1.186737104,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2016,0.495,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2017,0.495,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2018,0.495,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2019,0.495,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2020,0.495,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kenya,2021,0.495,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2010,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2011,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2012,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2013,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2014,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2015,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2016,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2017,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2018,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2019,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2020,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kuwait,2021,0.4483,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2010,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2011,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2012,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2013,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2014,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2015,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2016,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2017,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2018,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2019,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2020,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Kyrgyzstan,2021,0.224,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2010,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2011,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2012,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2013,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2014,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2015,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2016,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2017,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2018,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2019,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2020,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Laos,2021,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2010,0.14786,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2011,0.15548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2012,0.1631,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2013,0.1593,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2014,0.0945,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2015,0.0924,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2016,0.087519569,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2017,0.085511206,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2018,0.09096,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2019,0.089035,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2020,0.088674,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Latvia,2021,0.088674,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2010,0.31,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2011,0.296,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2012,0.282,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2013,0.268,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2014,0.254,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2015,0.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2016,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2017,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2018,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2019,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2020,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lebanon,2021,0.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2010,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2011,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2012,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2013,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2014,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2015,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2016,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2017,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2018,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2019,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2020,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lesotho,2021,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2010,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2011,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2012,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2013,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2014,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2015,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2016,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2017,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2018,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2019,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2020,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liberia,2021,0.0802,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2010,0.696162076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2011,0.698081038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2012,0.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2013,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2014,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2015,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2016,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2017,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2018,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2019,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2020,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Libya,2021,0.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liechtenstein,2015,0.0077,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liechtenstein,2016,0.0075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liechtenstein,2017,0.0079,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liechtenstein,2018,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liechtenstein,2019,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liechtenstein,2020,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Liechtenstein,2021,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2010,0.116425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2011,0.11025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2012,0.104075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2013,0.0979,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2014,0.1326,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2015,0.1313,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2016,0.1319,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2017,0.1304,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2018,0.13688,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2019,0.13688,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2020,0.13688,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Lithuania,2021,0.13688,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2010,0.0445,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2011,0.0444,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2012,0.0406,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2013,0.0408,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2014,0.0423,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2015,0.0422,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2016,0.0424,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2017,0.0436,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2018,0.0498,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2019,0.0443,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2020,0.0475,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Luxembourg,2021,0.0475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2010,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2011,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2012,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2013,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2014,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2015,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2016,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2017,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2018,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2019,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2020,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Madagascar,2021,0.395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2010,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2011,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2012,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2013,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2014,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2015,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2016,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2017,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2018,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2019,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2020,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malawi,2021,0.1431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2010,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2011,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2012,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2013,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2014,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2015,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2016,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2017,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2018,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2019,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2020,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malaysia,2021,1.342,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2010,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2011,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2012,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2013,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2014,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2015,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2016,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2017,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2018,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2019,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2020,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Maldives,2021,0.0056,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2010,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2011,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2012,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2013,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2014,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2015,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2016,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2017,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2018,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2019,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2020,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mali,2021,0.107,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2010,0.019155556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2011,0.016977778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2012,0.0148,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2013,0.0153,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2014,0.0346,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2015,0.0354,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2016,0.0363,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2017,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2018,0.037399302,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2019,0.038907432,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2020,0.038183637,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Malta,2021,0.037918188,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2010,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2011,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2012,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2013,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2014,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2015,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2016,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2017,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2018,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2019,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2020,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritania,2021,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2010,0.233,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2011,0.205,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2012,0.206,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2013,0.22,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2014,0.234,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2015,0.255,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2016,0.257,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2017,0.26,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2018,0.281,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2019,0.287,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2020,0.294,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mauritius,2021,0.295,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2010,11.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2011,11.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2012,11.98,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2013,11.96,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2014,12.05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2015,12.48,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2016,12.58,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2017,14.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2018,13.094,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2019,13.151,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2020,13.165,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mexico,2021,13.288,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2010,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2011,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2012,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2013,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2014,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2015,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2016,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2017,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2018,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2019,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2020,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Monaco,2021,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2010,0.07165,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2011,0.0723,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2012,0.07295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2013,0.0736,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2014,0.07425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2015,0.0749,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2016,0.0453,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2017,0.0453,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2018,0.0453,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2019,0.0453,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2020,0.0453,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mongolia,2021,0.0453,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2010,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2011,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2012,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2013,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2014,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2015,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2016,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2017,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2018,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2019,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2020,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Montenegro,2021,0.0964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2010,1.063,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2011,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2012,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2013,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2014,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2015,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2016,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2017,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2018,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2019,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2020,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Morocco,2021,1.063,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2010,0.31285,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2011,0.32468,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2012,0.33651,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2013,0.34834,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2014,0.36017,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2015,0.372,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2016,0.372,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2017,0.372,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2018,0.372,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2019,0.372,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2020,0.372,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Mozambique,2021,0.372,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2010,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2011,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2012,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2013,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2014,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2015,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2016,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2017,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2018,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2019,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2020,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Myanmar,2021,3.323,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2010,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2011,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2012,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2013,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2014,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2015,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2016,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2017,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2018,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2019,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2020,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Namibia,2021,0.073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2010,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2011,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2012,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2013,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2014,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2015,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2016,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2017,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2018,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2019,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2020,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nepal,2021,0.1476,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2010,1.217,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2011,1.229,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2012,1.217,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2013,1.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2014,1.224,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2015,1.237,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2016,1.26,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2017,1.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2018,1.9589,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2019,1.9665,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2020,2.0547,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Netherlands,2021,2.0613,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2010,0.81,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2011,0.749507163,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2012,0.689014326,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2013,0.628521489,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2014,0.568028651,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2015,0.507535814,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2016,0.447042977,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2017,0.460862233,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2018,0.487866571,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2019,0.498633928,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2020,0.498633928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,New Zealand,2021,0.498633928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2010,0.268545455,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2011,0.259818182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2012,0.251090909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2013,0.242363636,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2014,0.233636364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2015,0.224909091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2016,0.216181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2017,0.207454546,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2018,0.198727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2019,0.19,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2020,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nicaragua,2021,0.19,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2010,0.128185714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2011,0.094942857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2012,0.0617,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2013,0.1086,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2014,0.1555,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2015,0.1641,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2016,0.1765,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2017,0.178876,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2018,0.184774,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2019,0.193247,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2020,0.193247,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Niger,2021,0.193247,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2010,5.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2011,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2012,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2013,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2014,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2015,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2016,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2017,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2018,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2019,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2020,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Nigeria,2021,5.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2010,0.22905,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2011,0.229933333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2012,0.230816667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2013,0.2317,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2014,0.24315,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2015,0.2546,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2016,0.26605,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2017,0.2775,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2018,0.3054,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2019,0.275015077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2020,0.244630154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Macedonia,2021,0.214245231,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2010,0.8898,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2011,0.8529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2012,0.816,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2013,0.838,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2014,0.863,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2015,0.7977,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2016,0.7324,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2017,0.7753,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2018,0.773151652,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2019,0.771003304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2020,0.768854956,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Norway,2021,0.72803,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2010,0.1312,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2011,0.1308,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2012,0.1304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2013,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2014,0.116,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2015,0.102,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2016,0.088,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2017,0.088,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2018,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2019,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2020,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Oman,2021,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2010,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2011,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2012,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2013,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2014,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2015,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2016,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2017,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2018,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2019,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2020,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Pakistan,2021,9.65,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2010,0.158421053,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2011,0.154976077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2012,0.16708134,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2013,0.174976077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2014,0.163971292,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2015,0.174784689,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2016,0.173971292,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2017,0.1812,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2018,0.2997,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2019,0.1906,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2020,0.19771,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Palestine,2021,0.2474,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2010,0.581,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2011,0.631666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2012,0.682333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2013,0.733,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2014,0.729,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2015,0.7978,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2016,0.7591,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2017,0.7591,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2018,0.7591,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2019,0.7591,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2020,0.7591,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Panama,2021,0.7591,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2010,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2011,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2012,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2013,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2014,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2015,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2016,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2017,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2018,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2019,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2020,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Papua New Guinea,2021,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2010,0.338181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2011,0.362,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2012,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2013,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2014,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2015,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2016,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2017,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2018,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2019,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2020,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Paraguay,2021,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2010,1.3806,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2011,1.4439,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2012,1.5072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2013,1.5705,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2014,1.6338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2015,1.6971,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2016,1.7604,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2017,1.8237,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2018,1.887,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2019,2.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2020,2.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Peru,2021,2.24,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2010,7.126,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2011,7.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2012,7.301,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2013,7.473,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2014,6.662,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2015,8.53,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2016,9.184728978,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2017,7.914140382,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2018,8.000654419,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2019,8.304307156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2020,8.992564147,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Philippines,2021,9.186963782,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2010,2.062,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2011,2.033,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2012,2.031,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2013,1.991,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2014,1.988,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2015,2.048,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2016,2.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2017,2.028,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2018,2.129,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2019,2.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2020,1.9551511,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Poland,2021,2.091,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2010,0.94185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2011,0.9501,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2012,0.9105,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2013,0.901166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2014,0.891833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2015,0.8825,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2016,0.88956,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2017,0.91414,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2018,0.88375,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2019,0.88375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2020,0.88375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Portugal,2021,0.88375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2010,0.9386,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2011,0.91008,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2012,0.88156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2013,0.85304,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2014,0.82452,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2015,0.796,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2016,0.796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2017,0.796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2018,0.796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2019,0.796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2020,0.796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Puerto Rico,2021,0.796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2010,0.3645625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2011,0.402675,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2012,0.4407875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2013,0.4789,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2014,0.4589,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2015,0.46805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2016,0.4772,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2017,0.589,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2018,0.40400808,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2019,0.522648078,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2020,0.52256775,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Qatar,2021,0.582862215,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2010,7.132888889,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2011,7.174666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2012,7.216444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2013,7.258222222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2014,7.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2015,6.552,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2016,6.672,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2017,6.672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2018,6.672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2019,6.672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2020,6.672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Korea,2021,6.672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2010,0.145444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2011,0.145333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2012,0.145222222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2013,0.145111111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2014,0.145,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2015,0.147,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2016,0.148,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2017,0.148,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2018,0.152,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2019,0.154,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2020,0.16,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Moldova,2021,0.16,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2010,1.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2011,1.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2012,1.053,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2013,0.98,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2014,1.015,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2015,1.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2016,1.051,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2017,1.048,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2018,1.085,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2019,1.156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2020,1.078,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Romania,2021,1.27,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2010,12.610574018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2011,12.52286002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2012,12.435146022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2013,12.347432024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2014,17.34,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2015,16.38,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2016,18.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2017,17.69,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2018,17.15,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2019,17.15,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2020,17.15,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Russia,2021,17.15,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2010,0.121614286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2011,0.133657143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2012,0.1457,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2013,0.157742857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2014,0.169785714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2015,0.181828571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2016,0.193871429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2017,0.205914286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2018,0.217957143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2019,0.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2020,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Rwanda,2021,0.23,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2012,0.0154,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2013,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2014,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2015,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2016,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2017,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2018,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2019,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2020,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Kitts and Nevis,2021,0.0154,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2010,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2011,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2012,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2013,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2014,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2015,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2016,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2017,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2018,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2019,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2020,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Lucia,2021,0.0125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2013,0.0085,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2014,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2015,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2016,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2017,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2018,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2019,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2020,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saint Vincent and the Grenadines,2021,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sao Tome and Principe,2014,0.0151,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sao Tome and Principe,2015,0.0147,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sao Tome and Principe,2016,0.0147,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sao Tome and Principe,2017,0.0147,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sao Tome and Principe,2018,0.0147,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sao Tome and Principe,2019,0.0147,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sao Tome and Principe,2020,0.0147,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sao Tome and Principe,2021,0.0147,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2010,2.394666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2011,2.460833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2012,2.527,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2013,2.731,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2014,2.874,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2015,3.025,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2016,3.129,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2017,3.15,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2018,3.392,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2019,3.392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2020,3.392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Saudi Arabia,2021,3.392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2010,0.190426667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2011,0.20198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2012,0.213533333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2013,0.225086667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2014,0.23664,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2015,0.248193333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2016,0.259746667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2017,0.2713,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2018,0.2676,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2019,0.261,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2020,0.261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Senegal,2021,0.261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2010,0.6668,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2011,0.6729,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2012,0.6812,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2013,0.6576,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2014,0.627,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2015,0.659,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2016,0.662,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2017,0.6595,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2018,0.6539,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2019,0.6682,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2020,0.6771,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Serbia,2021,0.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2010,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2011,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2012,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2013,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2014,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2015,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2016,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2017,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2018,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2019,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2020,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Seychelles,2021,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2010,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2011,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2012,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2013,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2014,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2015,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2016,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2017,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2018,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2019,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2020,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sierra Leone,2021,0.111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2010,0.6885125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2011,0.610615,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2012,0.5327175,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2013,0.45482,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2014,0.3769225,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2015,0.299025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2016,0.29907,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2017,0.29673,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2018,0.29547,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2019,0.29862,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2020,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Singapore,2021,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2010,0.3089,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2011,0.3024,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2012,0.3058,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2013,0.2949,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2014,0.2851,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2015,0.2887,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2016,0.2863,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2017,0.2935,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2018,0.2925,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2019,0.2923,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2020,0.2931,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovakia,2021,0.2985502,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2010,0.1662,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2011,0.1691,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2012,0.1617,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2013,0.164,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2014,0.1631,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2015,0.1644,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2016,0.1618,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2017,0.1695,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2018,0.171,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2019,0.17,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2020,0.17,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Slovenia,2021,0.173,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2010,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2011,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2012,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2013,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2014,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2015,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2016,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2017,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2018,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2019,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2020,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Somalia,2021,0.015,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2010,4.120153846,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2011,4.141769231,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2012,4.163384615,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2013,4.185,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2014,3.9575,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2015,3.73,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2016,3.78,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2017,3.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2018,2.997,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2019,3.15,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2020,3.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Africa,2021,3.418,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2012,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2013,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2014,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2015,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2016,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2017,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2018,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2019,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2020,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,South Sudan,2021,0.193,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2010,5.05,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2011,4.644,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2012,4.599,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2013,4.629,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2014,4.552,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2015,4.735,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2016,4.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2017,4.694,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2018,4.498,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2019,4.529,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2020,4.56,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Spain,2021,4.56,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2010,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2011,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2012,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2013,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2014,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2015,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2016,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2017,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2018,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2019,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2020,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sri Lanka,2021,0.805,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2012,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2013,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2014,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2015,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2016,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2017,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2018,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2019,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2020,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sudan,2021,0.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2010,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2011,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2012,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2013,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2014,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2015,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2016,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2017,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2018,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2019,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2020,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Suriname,2021,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2010,1.019,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2011,1.0062,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2012,0.9934,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2013,0.9806,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2014,0.9678,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2015,0.955,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2016,0.9038,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2017,0.8526,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2018,0.8014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2019,0.7502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2020,0.699,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Sweden,2021,0.699,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2010,1.128333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2011,1.165166667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2012,1.202,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2013,0.917,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2014,0.901,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2015,0.933,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2016,0.932,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2017,0.931,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2018,0.965,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2019,0.928,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2020,0.939,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Switzerland,2021,0.914,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2010,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2011,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2012,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2013,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2014,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2015,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2016,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2017,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2018,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2019,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2020,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Syria,2021,1.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2010,0.531,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2011,0.502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2012,0.473,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2013,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2014,0.415,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2015,0.386,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2016,0.326,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2017,0.576,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2018,0.786,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2019,0.912,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2020,0.912,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tajikistan,2021,0.912,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2010,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2011,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2012,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2013,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2014,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2015,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2016,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2017,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2018,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2019,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2020,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Thailand,2021,2.739,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2010,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2011,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2012,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2013,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2014,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2015,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2016,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2017,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2018,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2019,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2020,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,East Timor,2021,0.099,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2010,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2011,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2012,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2013,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2014,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2015,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2016,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2017,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2018,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2019,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2020,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Togo,2021,0.1407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2010,0.233666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2011,0.2376,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2012,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2013,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2014,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2015,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2016,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2017,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2018,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2019,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2020,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Trinidad and Tobago,2021,0.2376,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2010,0.485803409,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2011,0.496,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2012,0.53994,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2013,0.58388,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2014,0.62782,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2015,0.67176,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2016,0.7157,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2017,0.835,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2018,0.86622,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2019,0.8394,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2020,0.8155,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Tunisia,2021,0.8155,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2010,0.757210659,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2011,0.757579102,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2012,0.757947545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2013,0.758315988,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2014,0.758684431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2015,0.759052874,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2016,0.759421317,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2017,0.77936721,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2018,0.725992702,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2019,0.589746351,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2020,0.4535,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkmenistan,2021,0.4535,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2010,4.785,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2011,4.8605,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2012,4.936,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2013,5.0865,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2014,5.237,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2015,5.7255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2016,6.214,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2017,6.401,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2018,6.583990851,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2019,6.745995426,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2020,6.908,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Turkey,2021,6.908,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2010,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2011,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2012,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2013,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2014,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2015,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2016,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2017,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2018,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2019,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2020,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uganda,2021,0.328,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2010,3.266,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2011,3.0965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2012,2.927,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2013,2.7575,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2014,2.588,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2015,2.493,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2016,2.423,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2017,2.46,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2018,2.46,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2019,2.411,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2020,2.77,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Ukraine,2021,2.77,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2010,1.508210647,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2011,1.686452777,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2012,1.864694906,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2013,2.042937036,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2014,2.221179165,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2015,2.399421295,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2016,2.577663424,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2017,2.594536186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2018,2.621599982,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2019,2.61777021,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2020,2.628215663,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Arab Emirates,2021,2.62569042,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2010,5.955,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2011,5.817,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2012,5.828,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2013,5.525,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2014,5.222,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2015,5.962,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2016,6.227,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2017,6.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2018,6.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2019,6.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2020,6.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Kingdom,2021,6.227,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2010,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2011,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2012,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2013,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2014,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2015,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2016,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2017,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2018,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2019,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2020,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United Republic of Tanzania,2021,0.527,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2010,62.09,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2011,61.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2012,60.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2013,59.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2014,59.13,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2015,58.39,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2016,58.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2017,58.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2018,58.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2019,58.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2020,58.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,United States of America,2021,58.39,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2010,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2011,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2012,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2013,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2014,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2015,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2016,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2017,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2018,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2019,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2020,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uruguay,2021,0.41,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2010,3.119444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2011,2.923333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2012,2.727222222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2013,2.531111111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2014,2.335,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2015,2.407,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2016,2.436,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2017,2.41,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2018,2.3735,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2019,2.337,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2020,2.262,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Uzbekistan,2021,2.16,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2010,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2011,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2012,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2013,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2014,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2015,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2016,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2017,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2018,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2019,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2020,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Venezuela,2021,5.123,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2010,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2011,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2012,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2013,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2014,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2015,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2016,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2017,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2018,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2019,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2020,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Vietnam,2021,1.206,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2010,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2011,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2012,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2013,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2014,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2015,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2016,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2017,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2018,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2019,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2020,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Yemen,2021,0.265,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2010,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2011,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2012,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2013,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2014,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2015,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2016,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2017,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2018,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2019,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2020,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zambia,2021,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2010,0.5023625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2011,0.52815,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2012,0.5539375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2013,0.579725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2014,0.6055125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2015,0.6313,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2016,0.5993,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2017,0.4877,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2018,0.64896,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2019,0.561432,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2020,0.547078,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Municipal water withdrawal,Zimbabwe,2021,0.547078,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2010,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2011,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2012,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2013,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2014,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2015,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2016,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2017,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2018,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2019,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2020,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Afghanistan,2021,0.99838511,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2010,35.839652381,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2011,34.161285269,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2012,32.409235641,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2013,30.578542459,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2014,28.663789094,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2015,30.434782609,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2016,29.735682819,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2017,25.915750916,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2018,21.607515658,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2019,21.043324492,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2020,28.625954199,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Albania,2021,27.889447236,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2010,35.254744303,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2011,35.55875251,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2012,35.845697329,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2013,34.774007,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2014,33.78155571,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2015,32.85986856,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2016,33.974744438,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2017,34.410246607,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2018,34.410246607,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2019,34.410246607,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2020,34.410246607,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Algeria,2021,34.410246607,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2010,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2011,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2012,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2013,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2014,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2015,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2016,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2017,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2018,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2019,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2020,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Angola,2021,45.267781241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2010,62.718707941,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2011,62.661498708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2012,62.608695652,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2013,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2014,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2015,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2016,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2017,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2018,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2019,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2020,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Antigua and Barbuda,2021,62.608695652,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2010,15.544852904,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2011,15.484383272,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2012,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2013,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2014,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2015,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2016,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2017,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2018,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2019,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2020,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Argentina,2021,15.484383272,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2010,32.858152448,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2011,24.7292863,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2012,20.418225093,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2013,18.314435607,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2014,19.059276097,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2015,14.95412844,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2016,16.672955975,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2017,23.344947735,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2018,25.865880619,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2019,21.465968586,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2020,23.082361258,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Armenia,2021,20.256150994,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2010,27.34455011,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2011,24.445110978,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2012,23.372245459,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2013,21.566740936,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2014,22.355150215,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2015,23.167916907,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2016,22.999761362,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2017,14.992754746,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2018,12.854634843,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2019,15.880102041,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2020,17.021276596,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Australia,2021,14.026602177,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2010,21.152094779,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2011,21.619061987,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2012,22.094215955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2013,22.577773879,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2014,23.069960707,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2015,23.571009488,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2016,24.081161739,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2017,24.600667833,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2018,25.12978741,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2019,25.668789809,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2020,25.668789809,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Austria,2021,25.668789809,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2010,3.482224248,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2011,4.249291785,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2012,4.12526096,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2013,4.035351009,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2014,4.330572809,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2015,3.883993498,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2016,3.50227311,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2017,3.267326733,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2018,3.476617079,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2019,3.248610008,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2020,3.531628974,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Azerbaijan,2021,3.146206046,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2010,59.282586121,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2011,60.468784715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2012,61.618039456,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2013,62.732049791,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2014,63.812412506,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2015,64.500349406,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2016,63.443830571,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2017,63.443830571,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2018,63.443830571,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2019,63.443830571,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2020,63.443830571,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bahrain,2021,63.443830571,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2010,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2011,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2012,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2013,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2014,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2015,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2016,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2017,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2018,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2019,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2020,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bangladesh,2021,10.036241985,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2010,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2011,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2012,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2013,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2014,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2015,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2016,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2017,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2018,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2019,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2020,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Barbados,2021,24.691358025,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2010,38.081395349,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2011,37.440347072,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2012,36.789772727,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2013,36.129458388,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2014,46.721833227,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2015,48.790601244,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2016,38.980716253,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2017,37.437365784,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2018,38.317757009,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2019,40.721649484,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2020,41.309255079,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belarus,2021,42.035087719,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2010,12.572067302,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2011,13.483427142,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2012,14.517420905,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2013,15.716123499,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2014,16.720779221,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2015,18.502754131,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2016,17.917924285,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2017,16.825738389,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2018,17.675941901,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2019,18.030986946,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2020,16.714919026,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belgium,2021,16.714919026,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2010,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2011,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2012,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2013,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2014,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2015,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2016,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2017,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2018,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2019,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2020,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Belize,2021,11.287128713,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2010,57.299520219,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2011,59.013157895,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2012,60.594560405,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2013,62.058465286,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2014,63.417498532,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2015,64.682539683,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2016,62.761506276,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2017,61.965811966,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2018,61.965811966,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2019,61.965811966,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2020,61.965811966,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Benin,2021,61.965811966,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2010,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2011,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2012,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2013,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2014,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2015,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2016,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2017,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2018,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2019,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2020,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bhutan,2021,5.029585799,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2010,7.031081205,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2011,7.54305093,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2012,8.049412814,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2013,8.550258492,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2014,9.045677615,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2015,9.535757901,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2016,10.020585188,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2017,10.500243483,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2018,10.974815012,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2019,11.444380266,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2020,11.639899637,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bolivia,2021,11.470313461,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2010,45.357186507,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2011,45.84178499,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2012,43.077714874,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2013,45.735217164,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2014,48.483235764,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2015,47.124600639,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2016,47.8390462,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2017,52.124352332,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2018,47.647058823,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2019,49.111342146,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2020,49.540710873,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Botswana,2021,54.820125716,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2010,22.998797274,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2011,23.46642719,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2012,23.966823967,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2013,24.503556609,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2014,25.08073197,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2015,25.785740013,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2016,25.018850852,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2017,25.487210719,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2018,23.834586466,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2019,23.695136418,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2020,24.002976191,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brazil,2021,24.15688605,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2010,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2011,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2012,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2013,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2014,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2015,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2016,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2017,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2018,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2019,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2020,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Brunei,2021,164.673913043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2010,15.846435223,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2011,14.566725658,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2012,16.593175853,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2013,17.231163131,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2014,16.503590163,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2015,15.980388674,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2016,15.71029775,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2017,15.995051255,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2018,15.944700461,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2019,15.990409443,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2020,16.505810518,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Bulgaria,2021,16.864560274,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2010,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2011,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2012,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2013,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2014,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2015,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2016,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2017,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2018,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2019,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2020,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burkina Faso,2021,45.916870416,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2010,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2011,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2012,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2013,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2014,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2015,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2016,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2017,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2018,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2019,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2020,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Burundi,2021,15.387361657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2010,60.596550297,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2011,61.122377366,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2012,61.561025488,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2013,61.932515601,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2014,62.251174068,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2015,62.52752291,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2016,62.769463984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2017,62.983046773,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2018,63.172981129,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2019,63.342988643,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2020,59.565771402,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cape Verde,2021,55.273898352,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2010,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2011,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2012,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2013,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2014,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2015,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2016,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2017,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2018,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2019,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2020,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cambodia,2021,4.487179487,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2010,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2011,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2012,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2013,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2014,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2015,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2016,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2017,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2018,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2019,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2020,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cameroon,2021,22.675486953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2010,13.117199847,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2011,13.021248752,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2012,13.265489256,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2013,13.523741498,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2014,13.891339004,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2015,14.280432309,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2016,13.875624886,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2017,13.483022095,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2018,13.770612153,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2019,14.0721247,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2020,14.416496311,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Canada,2021,14.416496311,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2010,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2011,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2012,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2013,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2014,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2015,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2016,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2017,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2018,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2019,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2020,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Central African Republic,2021,82.896551724,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2010,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2011,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2012,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2013,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2014,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2015,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2016,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2017,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2018,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2019,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2020,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chad,2021,11.78944975,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2010,3.730858957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2011,3.771330806,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2012,3.812540185,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2013,3.85450744,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2014,3.89725367,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2015,3.940800769,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2016,3.985171455,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2017,3.985171455,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2018,3.985171455,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2019,3.985171455,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2020,3.985171455,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Chile,2021,3.985171455,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2010,12.978651305,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2011,13.1754503,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2012,12.083540527,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2013,12.341027624,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2014,12.800400534,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2015,13.275372011,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2016,15.963047581,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2017,16.546976867,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2018,17.634444352,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2019,18.622533714,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2020,20.129367441,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,China,2021,20.129367441,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2010,21.082962392,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2011,19.286029399,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2012,17.86702773,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2013,16.718072661,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2014,15.768774236,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2015,14.97125052,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2016,12.464285714,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2017,12.849939942,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2018,13.217744869,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2019,12.905353491,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2020,12.491907357,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Colombia,2021,12.168199456,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2010,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2011,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2012,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2013,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2014,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2015,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2016,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2017,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2018,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2019,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2020,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Comoros,2021,48.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2010,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2011,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2012,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2013,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2014,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2015,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2016,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2017,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2018,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2019,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2020,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Republic of Congo,2021,69.465648855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2012,24.765142352,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2013,24.150826932,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2014,23.027339479,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2015,20.386170295,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2016,19.038477703,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2017,8.606557377,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2018,23.874591157,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2019,26.720891553,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2020,26.409394602,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Costa Rica,2021,32.162837535,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2010,46.525754681,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2011,45.56151925,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2012,42.97836816,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2013,44.014372591,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2014,40.468759762,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2015,42.634064141,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2016,42.265786801,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2017,45.123641712,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2018,44.750360961,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2019,43.931795386,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2020,42.97029703,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Croatia,2021,43.912175649,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2010,28.24225207,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2011,26.845354964,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2012,25.580129756,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2013,24.428797241,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2014,24.428797241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2015,24.428797241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2016,24.428797241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2017,24.428797241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2018,24.428797241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2019,24.428797241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2020,24.428797241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cuba,2021,24.428797241,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2010,24.191968658,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2011,23.796671165,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2012,31.023622047,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2013,32.94163729,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2014,35.611510791,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2015,33.673469388,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2016,36.102236422,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2017,37.037037037,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2018,38.811188811,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2019,39.416058394,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2020,37.454545454,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Cyprus,2021,37.716262976,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2010,36.410042544,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2011,36.107116225,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2012,34.606192287,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2013,37.478787879,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2014,36.493695441,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2015,38.30625,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2016,36.926829268,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2017,37.828220859,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2018,40.880503145,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2019,42.828685259,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2020,46.046852123,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Czech Republic,2021,46.478873239,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2010,34.537483121,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2011,32.961752587,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2012,31.264912218,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2013,29.468336222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2014,27.538726334,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2015,27.538726334,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2016,27.538726334,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2017,27.538726334,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2018,27.538726334,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2019,27.538726334,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2020,27.538726334,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ivory Coast,2021,27.538726334,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2010,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2011,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2012,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2013,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2014,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2015,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2016,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2017,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2018,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2019,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2020,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,North Korea,2021,10.427591305,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2010,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2011,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2012,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2013,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2014,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2015,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2016,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2017,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2018,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2019,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2020,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Democratic Republic of the Congo,2021,68.007606788,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2010,57.210467706,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2011,54.134731747,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2012,56.07267645,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2013,48.217945112,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2014,48.600269729,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2015,47.957132299,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2016,43.586942429,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2017,42.764998359,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2018,36.055513706,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2019,40.950873208,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2020,40.977745461,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Denmark,2021,40.977745461,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2010,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2011,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2012,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2013,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2014,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2015,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2016,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2017,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2018,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2019,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2020,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Djibouti,2021,84.210526316,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2010,95.0,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2011,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2012,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2013,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2014,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2015,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2016,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2017,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2018,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2019,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2020,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominica,2021,95.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2010,11.948015651,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2011,11.338951087,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2012,10.788970265,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2013,10.289873561,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2014,9.83491152,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2015,9.418477842,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2016,9.418477842,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2017,9.418477842,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2018,9.418477842,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2019,9.418477842,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2020,9.418477842,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Dominican Republic,2021,9.418477842,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2010,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2011,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2012,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2013,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2014,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2015,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2016,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2017,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2018,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2019,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2020,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ecuador,2021,13.036902601,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2010,11.538461539,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2011,13.328681089,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2012,13.278008299,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2013,13.287671233,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2014,13.537414966,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2015,14.00541272,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2016,14.101694915,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2017,13.870967742,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2018,13.870967742,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2019,13.870967742,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2020,13.870967742,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Egypt,2021,13.870967742,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2010,24.447958561,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2011,24.98864735,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2012,25.58766041,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2013,26.254972944,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2014,27.00297242,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2015,28.885861802,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2016,30.464638054,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2017,33.060252259,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2018,35.027569908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2019,37.655903162,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2020,40.45160534,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,El Salvador,2021,34.72172532,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2010,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2011,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2012,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2013,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2014,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2015,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2016,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2017,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2018,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2019,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2020,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Equatorial Guinea,2021,79.797979798,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2010,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2011,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2012,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2013,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2014,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2015,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2016,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2017,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2018,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2019,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2020,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eritrea,2021,5.326460481,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2010,3.311329063,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2011,3.187374265,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2012,3.740036787,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2013,3.416631438,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2014,3.471461205,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2015,3.689560132,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2016,3.482868941,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2017,3.327980644,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2018,3.860647246,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2019,7.755605025,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2020,7.379314646,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Estonia,2021,7.209799724,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2010,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2011,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2012,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2013,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2014,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2015,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2016,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2017,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2018,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2019,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2020,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Eswatini,2021,3.867041198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2010,8.918285087,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2011,8.684709939,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2012,8.463057472,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2013,8.252437525,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2014,8.052046404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2015,7.861156622,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2016,7.677725118,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2017,7.679108086,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2018,7.679108086,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2019,7.679108086,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2020,7.679108086,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ethiopia,2021,7.679108086,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2010,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2011,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2012,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2013,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2014,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2015,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2016,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2017,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2018,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2019,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2020,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Fiji,2021,29.799764429,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2010,17.408707621,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2011,17.249317768,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2012,17.423877198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2013,17.595503956,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2014,16.978869616,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2015,16.89059501,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2016,17.391304348,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2017,17.391304348,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2018,14.285714286,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2019,14.285714286,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2020,14.285714286,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Finland,2021,14.285714286,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2010,19.75295682,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2011,18.211371326,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2012,19.171150625,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2013,20.182641676,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2014,19.35377514,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2015,18.551714326,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2016,19.57335754,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2017,20.006680027,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2018,19.746111272,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2019,20.254163731,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2020,21.718270133,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,France,2021,21.718270133,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2010,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2011,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2012,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2013,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2014,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2015,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2016,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2017,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2018,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2019,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2020,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gabon,2021,60.891445004,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2010,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2011,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2012,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2013,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2014,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2015,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2016,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2017,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2018,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2019,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2020,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Gambia,2021,40.551181102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2010,28.61599772,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2011,33.275980954,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2012,38.096378866,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2013,43.085619665,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2014,48.252732509,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2015,53.60740204,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2016,59.160028965,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2017,49.563123395,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2018,48.261199579,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2019,41.687127101,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2020,36.659773118,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Georgia,2021,33.204887568,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2010,28.238470353,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2011,29.787540783,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2012,32.175961102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2013,34.92724398,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2014,34.58719554,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2015,35.881140621,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2016,35.37158595,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2017,37.91024882,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2018,39.148399172,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2019,41.533741753,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2020,41.533741753,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Germany,2021,41.533741753,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2010,19.549172152,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2011,19.401967469,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2012,19.384264538,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2013,18.764601439,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2014,18.237260737,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2015,20.827612576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2016,20.456097228,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2017,20.456097228,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2018,20.456097228,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2019,20.456097228,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2020,20.456097228,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ghana,2021,20.456097228,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2010,12.198566181,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2011,13.327149041,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2012,15.359838953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2013,15.274559194,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2014,15.206211556,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2015,15.129188535,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2016,16.643646409,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2017,16.646931123,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2018,16.666666667,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2019,16.678200692,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2020,16.666666667,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Greece,2021,16.724496877,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Grenada,2014,85.106382979,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Grenada,2015,85.106382979,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Grenada,2016,85.106382979,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Grenada,2017,85.106382979,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Grenada,2018,85.106382979,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Grenada,2019,85.106382979,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Grenada,2020,85.106382979,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Grenada,2021,85.106382979,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2010,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2011,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2012,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2013,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2014,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2015,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2016,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2017,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2018,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2019,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2020,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guatemala,2021,25.11958124,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2010,30.65097268,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2011,29.945924476,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2012,29.274896373,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2013,28.635484064,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2014,28.025504584,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2015,27.442971418,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2016,26.886072886,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2017,26.35315332,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2018,25.842696629,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2019,25.842696629,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2020,25.842696629,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea,2021,25.842696629,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2010,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2011,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2012,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2013,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2014,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2015,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2016,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2017,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2018,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2019,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2020,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guinea Bissau,2021,17.947368421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2010,4.243095452,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2011,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2012,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2013,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2014,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2015,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2016,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2017,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2018,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2019,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2020,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Guyana,2021,4.243095452,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2010,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2011,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2012,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2013,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2014,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2015,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2016,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2017,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2018,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2019,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2020,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Haiti,2021,13.103448276,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2010,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2011,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2012,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2013,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2014,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2015,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2016,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2017,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2018,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2019,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2020,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Honduras,2021,19.601742377,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2010,14.1829784,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2011,14.179273265,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2012,14.17541081,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2013,12.944173489,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2014,13.562002786,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2015,14.027474823,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2016,13.67315032,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2017,13.946085562,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2018,13.444641836,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2019,14.70877597,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2020,14.114565441,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Hungary,2021,14.114565441,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2010,33.107599699,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2011,31.387107661,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2012,31.940197078,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2013,29.532967033,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2014,27.61627907,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2015,28.7459576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2016,30.769230769,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2017,28.7459576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2018,28.7459576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2019,28.7459576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2020,28.7459576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iceland,2021,28.7459576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2010,7.358738502,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2011,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2012,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2013,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2014,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2015,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2016,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2017,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2018,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2019,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2020,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,India,2021,7.358738502,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2010,9.493428318,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2011,9.65261601,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2012,9.80249599,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2013,9.943861404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2014,10.077417771,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2015,10.386671558,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2016,10.690143059,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2017,10.690143059,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2018,10.690143059,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2019,10.690143059,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2020,10.690143059,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Indonesia,2021,10.690143059,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2010,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2011,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2012,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2013,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2014,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2015,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2016,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2017,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2018,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2019,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2020,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iran,2021,6.645230439,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2010,4.548192771,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2011,4.263322884,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2012,3.954248366,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2013,3.61774744,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2014,3.25,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2015,3.178694158,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2016,3.190661479,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2017,2.670071976,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2018,3.187369675,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2019,12.186506535,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2020,18.902357799,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Iraq,2021,15.87544786,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2010,71.877465159,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2011,68.618029471,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2012,65.484569701,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2013,63.707470834,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2014,62.103831447,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2015,58.839964595,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2016,57.079887995,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2017,61.243905175,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2018,64.256265951,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2019,64.140131536,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2020,63.960280374,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ireland,2021,64.010120177,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2010,35.904116728,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2011,37.234693878,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2012,38.510744628,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2013,39.735553379,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2014,40.912145943,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2015,42.043314501,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2016,41.411451398,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2017,43.346337234,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2018,44.033465434,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2019,43.140638481,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2020,41.666666667,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Israel,2021,38.167938931,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2010,27.353734026,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2011,27.524334202,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2012,27.693802294,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2013,27.777777778,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2014,27.765104989,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2015,27.752427752,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2016,27.570230485,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2017,27.387111947,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2018,27.203065134,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2019,27.160129755,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2020,27.1171437,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Italy,2021,27.1171437,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2010,23.707601144,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2011,22.42100707,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2012,21.276692413,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2013,20.252292591,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2014,19.329896907,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2015,25.454545454,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2016,10.339734121,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2017,17.447287951,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2018,27.678559907,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2019,43.672790518,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2020,72.208067442,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jamaica,2021,73.432747374,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2010,18.852920478,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2011,18.785846643,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2012,18.718357231,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2013,18.650448371,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2014,18.582116138,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2015,18.513356562,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2016,18.444165621,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2017,18.4110971,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2018,18.963337547,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2019,18.87755102,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2020,18.901660281,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Japan,2021,18.901660281,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2010,39.417693169,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2011,38.594149705,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2012,41.696113074,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2013,42.286348502,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2014,41.475105155,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2015,45.274027006,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2016,43.760176228,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2017,44.580485953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2018,44.546636938,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2019,45.016563185,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2020,45.016563185,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Jordan,2021,45.016563185,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2010,12.644353924,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2011,11.515676267,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2012,11.624754604,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2013,10.154897697,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2014,10.200190658,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2015,10.685437341,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2016,9.946426347,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2017,9.598789416,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2018,15.444737066,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2019,16.276019631,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2020,18.816560821,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kazakhstan,2021,18.816560821,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2010,36.855189559,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2011,36.855189559,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2012,36.855189559,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2013,36.855189559,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2014,36.855189559,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2015,36.855189559,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2016,12.276785714,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2017,12.276785714,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2018,12.276785714,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2019,12.276785714,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2020,12.276785714,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kenya,2021,12.276785714,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2010,41.358729979,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2011,40.792199793,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2012,40.240980494,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2013,39.704459675,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2014,39.182057161,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2015,38.673222912,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2016,37.539775582,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2017,35.864,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2018,35.864,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2019,35.864,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2020,35.864,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kuwait,2021,35.864,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2010,2.89802572,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2011,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2012,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2013,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2014,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2015,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2016,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2017,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2018,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2019,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2020,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Kyrgyzstan,2021,2.924281984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2010,2.257728378,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2011,2.093060699,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2012,1.950780312,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2013,1.826612337,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2014,1.717305152,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2015,1.656050955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2016,1.697127937,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2017,1.775956284,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2018,1.775956284,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2019,1.768707483,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2020,1.768707483,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Laos,2021,1.768707483,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2010,60.747740345,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2011,61.747418586,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2012,62.682551883,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2013,64.285714286,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2014,56.183115339,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2015,52.351274788,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2016,47.089515452,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2017,48.610699814,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2018,49.610306028,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2019,49.843530446,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2020,48.934115479,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Latvia,2021,48.934115479,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2010,19.682539682,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2011,18.181818182,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2012,16.775728733,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2013,15.455594002,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2014,14.213766088,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2015,13.043478261,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2016,13.043478261,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2017,13.043478261,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2018,13.043478261,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2019,13.043478261,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2020,13.043478261,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lebanon,2021,13.043478261,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2010,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2011,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2012,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2013,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2014,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2015,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2016,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2017,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2018,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2019,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2020,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lesotho,2021,45.662100457,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2010,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2011,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2012,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2013,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2014,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2015,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2016,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2017,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2018,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2019,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2020,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Liberia,2021,54.969156957,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2010,12.531203804,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2011,12.262709899,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2012,12.006861064,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2013,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2014,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2015,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2016,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2017,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2018,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2019,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2020,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Libya,2021,12.006861064,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2010,10.693739126,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2011,12.323466821,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2012,14.856225208,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2013,19.330194411,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2014,37.080536913,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2015,33.364843162,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2016,42.838583956,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2017,50.347490347,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2018,53.807146507,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2019,53.807146507,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2020,53.807146507,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Lithuania,2021,53.807146507,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2010,93.684210526,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2011,91.546391753,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2012,91.235955056,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2013,94.663573086,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2014,92.763157895,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2015,94.196428571,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2016,95.495495495,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2017,95.614035088,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2018,95.402298851,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2019,89.85801217,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2020,100.0,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Luxembourg,2021,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2010,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2011,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2012,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2013,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2014,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2015,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2016,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2017,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2018,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2019,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2020,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Madagascar,2021,2.91364545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2010,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2011,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2012,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2013,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2014,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2015,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2016,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2017,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2018,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2019,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2020,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malawi,2021,10.546875,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2010,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2011,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2012,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2013,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2014,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2015,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2016,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2017,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2018,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2019,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2020,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malaysia,2021,24.45335277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2010,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2011,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2012,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2013,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2014,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2015,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2016,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2017,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2018,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2019,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2020,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Maldives,2021,94.915254237,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2010,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2011,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2012,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2013,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2014,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2015,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2016,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2017,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2018,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2019,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2020,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mali,2021,2.063247204,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2010,48.880068046,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2011,42.933408261,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2012,37.09273183,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2013,33.774834437,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2014,54.147104851,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2015,57.281553398,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2016,57.802547771,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2017,56.060606061,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2018,58.68481868,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2019,61.89769534,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2020,60.468895323,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Malta,2021,61.698056201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2010,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2011,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2012,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2013,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2014,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2015,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2016,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2017,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2018,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2019,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2020,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritania,2021,7.065619908,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2010,36.01236476,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2011,35.901926445,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2012,35.395189003,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2013,36.184210526,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2014,37.741935484,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2015,41.666666667,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2016,41.054313099,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2017,42.207792208,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2018,47.147651007,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2019,47.993311037,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2020,48.355263158,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mauritius,2021,48.760330579,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2010,14.195247969,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2011,14.246575342,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2012,14.480316198,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2013,14.648425539,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2014,14.187820845,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2015,14.568376817,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2016,14.530418009,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2017,16.199908925,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2018,14.740183718,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2019,14.718357937,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2020,14.701612543,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mexico,2021,14.77363693,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2010,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2011,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2012,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2013,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2014,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2015,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2016,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2017,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2018,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2019,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2020,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Monaco,2021,100.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2010,13.499340576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2011,14.161661008,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2012,14.878645727,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2013,15.657353567,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2014,16.506113375,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2015,17.434823091,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2016,9.796712803,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2017,9.796712803,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2018,9.796712803,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2019,9.796712803,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2020,9.796712803,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mongolia,2021,9.796712803,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2010,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2011,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2012,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2013,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2014,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2015,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2016,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2017,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2018,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2019,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2020,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Montenegro,2021,59.912989434,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2010,10.19077749,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2011,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2012,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2013,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2014,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2015,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2016,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2017,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2018,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2019,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2020,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Morocco,2021,10.19077749,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2010,24.411028686,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2011,24.599312489,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2012,24.776982231,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2013,24.944910824,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2014,25.103878013,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2015,25.254582485,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2016,25.254582485,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2017,25.254582485,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2018,25.254582485,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2019,25.254582485,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2020,25.254582485,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Mozambique,2021,25.254582485,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2010,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2011,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2012,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2013,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2014,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2015,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2016,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2017,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2018,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2019,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2020,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Myanmar,2021,9.951664201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2010,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2011,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2012,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2013,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2014,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2015,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2016,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2017,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2018,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2019,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2020,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Namibia,2021,25.347222222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2010,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2011,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2012,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2013,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2014,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2015,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2016,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2017,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2018,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2019,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2020,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nepal,2021,1.554158638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2010,11.143668162,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2011,11.314258359,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2012,11.349224112,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2013,12.396149281,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2014,13.723973225,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2015,14.707281115,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2016,15.704065608,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2017,21.310729896,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2018,24.213245655,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2019,23.401242354,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2020,24.737539128,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Netherlands,2021,25.482124314,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2010,15.573928091,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2011,14.58041277,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2012,13.563235879,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2013,12.521541943,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2014,11.454433746,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2015,10.360969755,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2016,9.240161345,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2017,9.498666921,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2018,9.999588304,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2019,10.197776262,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2020,10.197776262,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,New Zealand,2021,10.197776262,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2010,17.744789796,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2011,17.338382374,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2012,17.074884372,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2013,16.801162091,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2014,16.516608671,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2015,16.220568257,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2016,15.912330952,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2017,15.591127132,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2018,15.25612103,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2019,14.913657771,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2020,14.906403477,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nicaragua,2021,14.906403477,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2010,10.912695195,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2011,7.82803298,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2012,4.931791538,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2013,7.862253701,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2014,10.287793583,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2015,9.532384548,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2016,10.101877289,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2017,11.312037205,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2018,7.599143084,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2019,7.48060297,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2020,7.48060297,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Niger,2021,7.48060297,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2010,40.080160321,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2011,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2012,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2013,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2014,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2015,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2016,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2017,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2018,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2019,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2020,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Nigeria,2021,40.080160321,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2010,30.860953921,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2011,34.801473185,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2012,13.528113156,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2013,46.836466545,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2014,45.772025258,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2015,57.324353168,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2016,25.488013305,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2017,49.908805566,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2018,13.735781847,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2019,17.197255905,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2020,34.843400151,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Macedonia,2021,13.735781847,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2010,31.714010764,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2011,30.803958394,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2012,29.869321718,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2013,30.429572606,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2014,31.055453597,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2015,29.396373821,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2016,27.655477099,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2017,28.808709869,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2018,28.751833436,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2019,28.694866051,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2020,28.637807495,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Norway,2021,27.535902993,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2010,7.687349856,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2011,7.424225224,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2012,7.177059827,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2013,6.944444444,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2014,6.228745302,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2015,5.448717949,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2016,4.700854701,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2017,4.700854701,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2018,6.940736786,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2019,6.788511749,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2020,6.788511749,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Oman,2021,6.788511749,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2010,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2011,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2012,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2013,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2014,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2015,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2016,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2017,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2018,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2019,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2020,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Pakistan,2021,5.260288907,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2010,47.846889952,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2011,47.846889952,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2012,47.846889952,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2013,47.846889952,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2014,47.846889952,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2015,47.846889952,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2016,47.846889952,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2017,48.29424307,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2018,76.944801027,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2019,45.608997368,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2020,44.092328278,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Palestine,2021,56.432481752,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2010,56.027000964,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2011,57.619800535,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2012,59.049212485,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2013,60.339150477,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2014,60.6943635,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2015,63.757692,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2016,62.663034506,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2017,62.663034506,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2018,62.663034506,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2019,62.663034506,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2020,62.663034506,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Panama,2021,62.663034506,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2010,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2011,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2012,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2013,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2014,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2015,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2016,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2017,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2018,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2019,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2020,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Papua New Guinea,2021,57.000765111,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2010,15.867035381,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2011,15.848808785,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2012,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2013,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2014,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2015,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2016,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2017,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2018,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2019,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2020,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Paraguay,2021,15.002072109,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2010,7.505381956,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2011,6.9549678,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2012,6.517170704,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2013,6.160635481,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2014,5.864658415,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2015,5.615018379,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2016,5.401723249,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2017,5.217159956,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2018,5.055999143,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2019,5.810635538,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2020,5.810635538,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Peru,2021,5.810635538,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2010,8.557395554,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2011,8.565412389,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2012,8.666081094,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2013,8.849337454,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2014,7.983223487,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2015,9.872570919,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2016,10.474719013,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2017,8.62188694,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2018,8.681471869,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2019,9.656787127,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2020,10.279886685,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Philippines,2021,10.322389053,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2010,18.976624333,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2011,18.835410201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2012,17.691637631,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2013,18.578827042,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2014,18.598559267,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2015,19.499190707,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2016,19.334719335,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2017,20.11705188,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2018,21.224204965,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2019,21.604625216,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2020,21.224204965,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Poland,2021,21.306297127,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2010,11.716599346,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2011,12.207520339,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2012,12.173486057,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2013,12.505611719,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2014,12.863920174,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2015,13.251634612,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2016,13.893561641,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2017,14.831941226,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2018,14.729166667,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2019,14.410008984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2020,14.410008984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Portugal,2021,14.410008984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2010,22.602162448,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2011,22.883235355,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2012,23.190281526,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2013,23.527075553,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2014,23.898160654,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2015,24.309054818,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2016,24.309054818,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2017,24.309054818,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2018,24.309054818,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2019,24.309054818,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2020,24.309054818,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Puerto Rico,2021,24.309054818,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2010,56.895105441,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2011,58.310103899,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2012,58.977103578,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2013,61.138771863,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2014,54.683031458,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2015,57.59906473,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2016,52.290159983,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2017,69.050410317,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2018,53.919716856,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2019,59.196473436,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2020,59.145816508,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Qatar,2021,62.391707191,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2010,25.897388316,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2011,26.00961887,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2012,26.121509986,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2013,26.233063201,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2014,26.344280043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2015,24.300867888,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2016,24.636289787,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2017,24.636289787,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2018,24.636289787,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2019,24.636289787,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2020,24.636289787,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Korea,2021,24.636289787,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2010,15.509478673,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2011,15.938585268,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2012,16.392825787,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2013,16.894120691,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2014,17.323775388,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2015,17.5,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2016,17.556346382,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2017,17.619047619,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2018,18.160095579,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2019,18.333333333,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2020,20.0,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Moldova,2021,20.050125313,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2010,16.559485531,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2011,15.151515151,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2012,16.244986115,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2013,15.269554378,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2014,16.157274753,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2015,15.931941222,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2016,16.488860998,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2017,15.473202421,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2018,16.91084788,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2019,16.530816531,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2020,14.575446187,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Romania,2021,16.149542218,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2010,20.241691843,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2011,20.241691843,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2012,20.241691843,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2013,20.241691843,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2014,24.488066657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2015,26.224783862,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2016,28.152492669,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2017,27.464679398,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2018,26.457883369,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2019,26.457883369,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2020,26.457883369,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Russia,2021,26.457883369,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2010,32.331003659,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2011,33.328833592,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2012,34.210119809,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2013,34.994153686,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2014,35.696191526,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2015,36.328457131,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2016,36.900859592,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2017,37.421516422,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2018,37.897140945,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2019,37.704918033,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2020,38.301415487,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Rwanda,2021,37.704918033,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2012,98.717948718,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2013,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2014,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2015,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2016,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2017,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2018,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2019,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2020,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Kitts and Nevis,2021,98.717948718,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2010,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2011,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2012,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2013,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2014,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2015,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2016,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2017,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2018,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2019,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2020,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Lucia,2021,29.137529137,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2013,99.976476123,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2014,99.976476123,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2015,99.976476123,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2016,99.976476123,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2017,99.976476123,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2018,99.976476123,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2019,99.976476123,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2020,99.976476123,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saint Vincent and the Grenadines,2021,99.976476123,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sao Tome and Principe,2014,39.786917173,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sao Tome and Principe,2015,37.284958094,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sao Tome and Principe,2016,35.941320293,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sao Tome and Principe,2017,35.941320293,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sao Tome and Principe,2018,35.941320293,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sao Tome and Principe,2019,35.941320293,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sao Tome and Principe,2020,35.941320293,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sao Tome and Principe,2021,35.941320293,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2010,10.979672933,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2011,11.528851409,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2012,12.102490422,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2013,12.268092179,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2014,12.27470744,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2015,12.181862113,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2016,13.073451993,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2017,13.490364026,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2018,13.050169283,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2019,13.050169283,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2020,13.050169283,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Saudi Arabia,2021,13.050169283,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2010,8.077936673,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2011,8.506521298,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2012,8.928996152,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2013,9.345490958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2014,9.756131795,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2015,10.161041219,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2016,10.560338392,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2017,10.954139194,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2018,8.838398122,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2019,8.639243186,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2020,8.639243186,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Senegal,2021,8.639243186,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2010,16.503588813,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2011,17.015340526,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2012,17.606616697,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2013,15.845783132,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2014,15.930282782,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2015,14.055668124,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2016,14.065653883,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2017,12.264291293,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2018,11.766081871,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2019,11.892642295,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2020,12.716687013,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Serbia,2021,13.601267076,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2010,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2011,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2012,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2013,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2014,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2015,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2016,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2017,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2018,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2019,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2020,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Seychelles,2021,65.693430657,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2010,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2011,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2012,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2013,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2014,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2015,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2016,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2017,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2018,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2019,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2020,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sierra Leone,2021,52.309142319,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2010,46.126314132,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2011,46.013515856,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2012,45.868544055,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2013,45.67534373,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2014,45.405046297,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2015,45.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2016,45.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2017,45.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2018,45.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2019,45.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2020,45.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Singapore,2021,45.0,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2010,53.194420527,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2011,52.701289648,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2012,45.964226665,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2013,58.477096966,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2014,50.974432326,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2015,52.232793619,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2016,53.514018692,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2017,52.759302535,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2018,52.5606469,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2019,52.327246688,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2020,52.810810811,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovakia,2021,52.721946354,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2010,17.696539485,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2011,17.988723804,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2012,17.42269152,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2013,14.191761855,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2014,16.63776395,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2015,18.327759197,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2016,18.235095233,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2017,18.198410994,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2018,17.79396462,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2019,18.008474576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2020,16.932270916,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Slovenia,2021,18.58216971,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2010,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2011,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2012,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2013,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2014,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2015,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2016,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2017,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2018,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2019,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2020,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Somalia,2021,0.454821104,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2010,27.698370015,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2011,27.45915016,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2012,27.226447744,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2013,27.0,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2014,23.170374707,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2015,19.989281886,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2016,19.842519685,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2017,20.072239422,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2018,15.098236776,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2019,16.666666667,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2020,16.207378078,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Africa,2021,17.435217303,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2012,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2013,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2014,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2015,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2016,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2017,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2018,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2019,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2020,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,South Sudan,2021,29.331306991,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2010,14.336815807,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2011,13.254559466,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2012,12.551513332,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2013,14.324838695,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2014,13.856503607,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2015,15.025068224,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2016,15.662534832,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2017,15.59779358,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2018,15.294637696,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2019,15.502575776,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2020,15.713301172,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Spain,2021,15.713301172,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2010,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2011,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2012,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2013,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2014,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2015,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2016,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2017,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2018,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2019,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2020,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sri Lanka,2021,6.218136876,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2012,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2013,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2014,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2015,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2016,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2017,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2018,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2019,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2020,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sudan,2021,3.527009467,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2010,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2011,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2012,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2013,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2014,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2015,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2016,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2017,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2018,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2019,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2020,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Suriname,2021,8.004546193,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2010,37.8951283,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2011,38.31391364,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2012,38.753218382,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2013,39.214588499,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2014,39.699729264,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2015,40.210526316,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2016,39.064661134,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2017,37.856318267,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2018,36.58024466,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2019,35.230581384,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2020,28.140096618,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Sweden,2021,33.800773694,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2010,53.540472485,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2011,56.668222996,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2012,59.956105347,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2013,53.320153506,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2014,52.881793638,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2015,53.750432077,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2016,53.723772193,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2017,53.697081555,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2018,54.587623034,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2019,53.61682459,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2020,53.909748536,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Switzerland,2021,53.238583411,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2010,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2011,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2012,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2013,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2014,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2015,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2016,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2017,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2018,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2019,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2020,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Syria,2021,8.800505955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2010,5.203954962,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2011,5.080446018,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2012,4.94859598,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2013,4.807530354,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2014,4.656247974,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2015,4.330752833,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2016,3.72614013,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2017,7.210816224,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2018,8.041743401,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2019,8.602150538,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2020,9.212121212,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tajikistan,2021,9.212121212,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2010,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2011,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2012,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2013,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2014,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2015,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2016,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2017,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2018,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2019,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2020,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Thailand,2021,4.77960423,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2010,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2011,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2012,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2013,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2014,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2015,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2016,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2017,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2018,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2019,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2020,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,East Timor,2021,8.447098976,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2010,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2011,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2012,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2013,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2014,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2015,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2016,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2017,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2018,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2019,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2020,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Togo,2021,63.094170404,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2010,62.008310389,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2011,62.004175365,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2012,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2013,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2014,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2015,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2016,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2017,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2018,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2019,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2020,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Trinidad and Tobago,2021,62.004175365,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2010,14.904230989,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2011,15.007564297,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2012,15.89311575,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2013,16.731811877,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2014,17.52727557,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2015,18.282765603,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2016,19.001221261,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2017,23.091814159,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2018,22.530236429,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2019,21.85823655,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2020,22.732340971,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Tunisia,2021,22.732340971,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2010,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2011,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2012,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2013,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2014,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2015,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2016,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2017,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2018,2.700865708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2019,2.128425807,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2020,1.727967933,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkmenistan,2021,2.609341267,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2010,10.754742426,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2011,10.303126656,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2012,10.224754014,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2013,10.042349039,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2014,10.215945224,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2015,10.280373832,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2016,10.709915375,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2017,11.13243022,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2018,11.086959419,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2019,10.854783863,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2020,11.128294349,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Turkey,2021,11.828767123,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2010,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2011,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2012,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2013,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2014,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2015,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2016,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2017,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2018,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2019,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2020,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uganda,2021,51.491365777,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2010,21.993265993,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2011,22.12338799,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2012,22.263634289,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2013,22.423256759,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2014,22.606568833,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2015,25.828843763,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2016,24.56905293,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2017,21.960364221,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2018,21.960364221,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2019,21.783520058,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2020,28.064842959,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Ukraine,2021,28.067686696,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2010,33.781721395,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2011,37.000724117,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2012,40.090563826,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2013,43.058861652,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2014,45.912650722,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2015,48.658431795,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2016,51.302222695,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2017,51.872346095,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2018,51.520122691,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2019,52.010576161,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2020,52.761511043,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Arab Emirates,2021,53.57796953,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2010,74.146475085,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2011,75.722468107,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2012,70.952033114,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2013,73.139090031,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2014,73.454115794,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2015,73.068202708,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2016,73.954869359,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2017,73.954869359,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2018,73.954869359,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2019,73.954869359,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2020,73.954869359,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Kingdom,2021,73.954869359,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2010,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2011,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2012,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2013,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2014,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2015,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2016,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2017,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2018,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2019,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2020,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United Republic of Tanzania,2021,10.165895062,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2010,12.786507136,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2011,12.852743385,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2012,12.921312384,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2013,12.992339576,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2014,13.065959562,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2015,13.142316955,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2016,13.142316955,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2017,13.142316955,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2018,13.142316955,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2019,13.142316955,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2020,13.142316955,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,United States of America,2021,13.142316955,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2010,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2011,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2012,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2013,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2014,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2015,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2016,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2017,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2018,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2019,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2020,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uruguay,2021,11.202185792,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2010,5.812930276,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2011,5.495331788,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2012,5.17210498,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2013,4.843098903,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2014,4.508157158,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2015,4.365568775,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2016,4.464809384,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2017,4.091680815,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2018,4.20549984,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2019,4.32970209,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2020,4.416588566,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Uzbekistan,2021,4.947093582,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2010,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2011,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2012,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2013,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2014,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2015,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2016,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2017,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2018,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2019,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2020,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Venezuela,2021,22.641792958,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2010,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2011,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2012,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2013,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2014,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2015,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2016,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2017,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2018,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2019,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2020,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Vietnam,2021,1.470193832,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2010,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2011,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2012,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2013,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2014,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2015,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2016,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2017,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2018,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2019,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2020,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Yemen,2021,7.433380084,%,I,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2010,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2011,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2012,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2013,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2014,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2015,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2016,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2017,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2018,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2019,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2020,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zambia,2021,18.44783715,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2010,14.334221442,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2011,15.164305095,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2012,16.004839554,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2013,16.856023435,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2014,17.718060417,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2015,18.591159408,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2016,17.617661757,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2017,14.605732083,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2018,17.207486806,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2019,13.25299723,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2020,11.142845713,%,E,False
+Water use,Water withdrawal by sector,Municipal water withdrawal as % of total withdrawal,Zimbabwe,2021,11.142845713,%,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2010,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2011,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2012,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2013,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2014,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2015,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2016,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2017,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2018,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2019,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2020,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Afghanistan,2021,20.3729,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2010,1.1737,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2011,1.14902,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2012,1.12434,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2013,1.09966,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2014,1.07498,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2015,0.92,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2016,0.908,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2017,1.092,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2018,0.958,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2019,1.131,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2020,0.786,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Albania,2021,0.796,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2010,7.952121212,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2011,8.188560606,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2012,8.425,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2013,8.761333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2014,9.097666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2015,9.434,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2016,9.978,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2017,10.462,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2018,10.462,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2019,10.462,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2020,10.462,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Algeria,2021,10.462,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2010,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2011,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2012,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2013,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2014,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2015,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2016,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2017,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2018,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2019,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2020,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Angola,2021,0.7058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2010,0.010614286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2011,0.011057143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2012,0.0115,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2013,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2014,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2015,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2016,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2017,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2018,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2019,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2020,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Antigua and Barbuda,2021,0.0115,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2010,37.114375,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2011,37.78,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2012,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2013,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2014,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2015,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2016,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2017,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2018,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2019,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2020,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Argentina,2021,37.78,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2010,1.981,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2011,2.438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2012,2.941,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2013,2.9545,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2014,2.8595,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2015,3.27,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2016,3.18,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2017,2.87,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2018,2.714,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2019,2.865,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2020,2.829,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Armenia,2021,2.967,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2010,13.67,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2011,13.336,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2012,16.019,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2013,19.748,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2014,18.64,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2015,17.33,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2016,17.01322,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2017,17.4183,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2018,17.87153983,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2019,15.68,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2020,13.63,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Australia,2021,16.54,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2010,3.403918182,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2011,3.374593939,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2012,3.345269697,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2013,3.315945455,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2014,3.286621212,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2015,3.25729697,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2016,3.227972727,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2017,3.198648485,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2018,3.169324242,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2019,3.14,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2020,3.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Austria,2021,3.14,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2010,10.97,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2011,11.296,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2012,11.975,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2013,11.994,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2014,11.592,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2015,11.689,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2016,11.878,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2017,12.12,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2018,12.167,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2019,12.59,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2020,12.204,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Azerbaijan,2021,12.968,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2010,0.402709091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2011,0.409181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2012,0.415654545,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2013,0.422127273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2014,0.4286,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2015,0.4293,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2016,0.4344,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2017,0.4344,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2018,0.4344,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2019,0.4344,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2020,0.4344,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bahrain,2021,0.4344,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2010,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2011,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2012,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2013,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2014,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2015,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2016,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2017,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2018,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2019,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2020,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bangladesh,2021,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2010,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2011,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2012,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2013,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2014,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2015,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2016,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2017,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2018,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2019,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2020,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Barbados,2021,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2010,1.548,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2011,1.536666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2012,1.525333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2013,1.514,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2014,1.571,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2015,1.447,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2016,1.452,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2017,1.397,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2018,1.391,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2019,1.358,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2020,1.329,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belarus,2021,1.425,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2010,5.666,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2011,5.33,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2012,4.994,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2013,4.664,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2014,4.312,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2015,3.994,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2016,4.124361663,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2017,4.39208065,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2018,4.18082388,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2019,4.0985,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2020,4.4212,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belgium,2021,4.4212,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2010,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2011,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2012,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2013,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2014,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2015,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2016,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2017,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2018,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2019,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2020,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Belize,2021,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2010,0.208428571,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2011,0.217142857,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2012,0.225857143,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2013,0.234571429,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2014,0.243285714,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2015,0.252,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2016,0.239,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2017,0.234,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2018,0.234,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2019,0.234,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2020,0.234,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Benin,2021,0.234,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2010,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2011,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2012,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2013,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2014,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2015,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2016,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2017,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2018,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2019,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2020,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bhutan,2021,0.338,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2010,2.09962644,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2011,2.11125288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2012,2.12287932,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2013,2.13450576,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2014,2.1461322,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2015,2.15775864,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2016,2.16938508,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2017,2.18101152,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2018,2.19263796,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2019,2.2042644,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2020,2.2091419,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bolivia,2021,2.2049101,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2010,0.198351515,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2011,0.1972,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2012,0.1943,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2013,0.1911,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2014,0.1879,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2015,0.1878,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2016,0.2013,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2017,0.193,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2018,0.204,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2019,0.20199,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2020,0.2204276,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Botswana,2021,0.2336215,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2010,74.83,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2011,72.38,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2012,69.93,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2013,67.48,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2014,65.03,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2015,63.857,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2016,66.31,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2017,65.68,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2018,66.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2019,67.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2020,67.2,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brazil,2021,67.31,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2010,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2011,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2012,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2013,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2014,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2015,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2016,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2017,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2018,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2019,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2020,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Brunei,2021,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2010,5.9597,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2011,6.3851,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2012,5.715,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2013,5.468,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2014,5.3758,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2015,5.6294,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2016,5.689262,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2017,5.658,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2018,5.425,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2019,5.422,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2020,5.077,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Bulgaria,2021,4.969,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2010,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2011,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2012,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2013,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2014,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2015,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2016,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2017,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2018,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2019,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2020,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burkina Faso,2021,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2010,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2011,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2012,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2013,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2014,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2015,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2016,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2017,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2018,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2019,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2020,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Burundi,2021,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2010,0.133415037,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2011,0.146672796,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2012,0.159930555,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2013,0.173188315,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2014,0.186446074,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2015,0.199703833,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2016,0.212961592,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2017,0.226219352,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2018,0.239477111,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2019,0.25273487,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2020,0.29297794,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cape Verde,2021,0.25695025,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2010,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2011,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2012,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2013,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2014,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2015,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2016,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2017,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2018,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2019,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2020,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cambodia,2021,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2010,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2011,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2012,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2013,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2014,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2015,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2016,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2017,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2018,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2019,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2020,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cameroon,2021,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2010,40.570838658,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2011,39.351064537,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2012,38.283548403,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2013,37.216032269,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2014,36.188016134,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2015,35.16,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2016,35.7065,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2017,36.253,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2018,35.416,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2019,34.579,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2020,33.753,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Canada,2021,33.753,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2010,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2011,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2012,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2013,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2014,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2015,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2016,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2017,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2018,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2019,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2020,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Central African Republic,2021,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2010,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2011,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2012,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2013,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2014,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2015,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2016,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2017,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2018,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2019,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2020,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chad,2021,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2010,34.2066,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2011,33.9005,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2012,33.5944,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2013,33.2883,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2014,32.9822,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2015,32.6761,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2016,32.37,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2017,32.37,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2018,32.37,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2019,32.37,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2020,32.37,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Chile,2021,32.37,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2010,590.2,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2011,599.6,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2012,603.3,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2013,607.81,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2014,599.2,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2015,598.1,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2016,604.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2017,604.34,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2018,601.55,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2019,602.12,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2020,581.29,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,China,2021,581.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2010,16.038678571,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2011,18.174517857,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2012,20.310357143,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2013,22.446196429,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2014,24.582035714,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2015,26.717875,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2016,28.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2017,27.702853212,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2018,27.143920597,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2019,25.30733022,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2020,25.87268131,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Colombia,2021,26.52959258,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2010,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2011,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2012,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2013,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2014,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2015,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2016,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2017,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2018,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2019,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2020,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Comoros,2021,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2010,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2011,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2012,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2013,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2014,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2015,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2016,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2017,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2018,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2019,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2020,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Republic of Congo,2021,0.0917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2012,2.338012,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2013,2.4654191,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2014,2.7425322,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2015,3.1929126,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2016,2.9409032,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2017,2.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2018,3.053535563,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2019,3.138135669,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2020,3.136078324,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Costa Rica,2021,3.446835183,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2010,1.10454952,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2011,1.13626808,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2012,1.14829162,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2013,1.11347492,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2014,1.09988792,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2015,1.08911972,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2016,1.10619022,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2017,0.994082,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2018,0.985563,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2019,0.997,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2020,1.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Croatia,2021,1.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2010,6.01935,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2011,6.332566667,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2012,6.645783333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2013,6.959,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2014,6.959,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2015,6.959,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2016,6.959,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2017,6.959,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2018,6.959,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2019,6.959,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2020,6.959,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cuba,2021,6.959,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2010,0.2042,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2011,0.2223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2012,0.254,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2013,0.2553,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2014,0.278,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2015,0.294,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2016,0.313,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2017,0.297,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2018,0.286,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2019,0.274,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2020,0.275,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Cyprus,2021,0.289,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2010,1.819552941,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2011,1.766964706,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2012,1.841,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2013,1.65,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2014,1.6496,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2015,1.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2016,1.64,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2017,1.63,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2018,1.59,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2019,1.506,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2020,1.366,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Czech Republic,2021,1.349,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2010,1.333044444,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2011,1.290283333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2012,1.248044444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2013,1.205022222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2014,1.162,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2015,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2016,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2017,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2018,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2019,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2020,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ivory Coast,2021,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2010,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2011,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2012,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2013,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2014,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2015,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2016,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2017,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2018,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2019,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2020,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,North Korea,2021,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2010,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2011,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2012,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2013,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2014,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2015,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2016,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2017,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2018,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2019,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2020,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Democratic Republic of the Congo,2021,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2010,0.7184,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2011,0.7437,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2012,0.7155,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2013,0.829566667,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2014,0.815633333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2015,0.8118,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2016,0.886995,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2017,0.895798,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2018,1.105817,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2019,0.945594,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2020,0.97643,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Denmark,2021,0.97643,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2010,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2011,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2012,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2013,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2014,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2015,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2016,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2017,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2018,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2019,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2020,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Djibouti,2021,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2010,0.02,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2011,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2012,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2013,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2014,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2015,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2016,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2017,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2018,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2019,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2020,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominica,2021,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2010,7.156,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2011,7.54038,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2012,7.92476,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2013,8.30914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2014,8.69352,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2015,9.0779,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2016,9.0779,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2017,9.0779,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2018,9.0779,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2019,9.0779,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2020,9.0779,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Dominican Republic,2021,9.0779,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2010,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2011,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2012,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2013,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2014,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2015,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2016,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2017,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2018,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2019,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2020,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ecuador,2021,9.918,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2010,78.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2011,71.65,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2012,72.3,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2013,73.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2014,73.5,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2015,73.9,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2016,73.75,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2017,77.5,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2018,77.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2019,77.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2020,77.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Egypt,2021,77.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2010,1.703368988,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2011,1.620442786,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2012,1.537516584,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2013,1.454590382,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2014,1.371664179,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2015,1.307560088,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2016,1.234546097,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2017,1.175732106,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2018,1.101418114,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2019,1.033304123,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2020,0.961890132,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,El Salvador,2021,1.120624037,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2010,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2011,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2012,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2013,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2014,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2015,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2016,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2017,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2018,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2019,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2020,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Equatorial Guinea,2021,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2010,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2011,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2012,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2013,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2014,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2015,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2016,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2017,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2018,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2019,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2020,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eritrea,2021,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2010,1.84216062,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2011,1.87301506,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2012,1.631,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2013,1.74440823,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2014,1.71973692,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2015,1.58013416,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2016,1.75142967,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2017,1.78486615,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2018,1.60853857,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2019,1.00624,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2020,0.8529523,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Estonia,2021,0.999749643,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2010,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2011,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2012,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2013,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2014,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2015,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2016,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2017,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2018,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2019,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2020,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Eswatini,2021,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2010,9.082463636,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2011,9.326736364,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2012,9.571009091,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2013,9.815281818,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2014,10.059554545,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2015,10.303827273,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2016,10.55,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2017,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2018,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2019,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2020,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ethiopia,2021,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2010,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2011,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2012,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2013,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2014,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2015,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2016,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2017,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2018,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2019,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2020,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Fiji,2021,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2010,2.308499911,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2011,2.318932293,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2012,2.338744674,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2013,2.358557055,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2014,2.355869437,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2015,2.368181818,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2016,2.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2017,2.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2018,2.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2019,3.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2020,3.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Finland,2021,3.5,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2010,28.578,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2011,30.146,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2012,28.063,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2013,27.157,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2014,27.297,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2015,28.116,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2016,26.439,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2017,26.946,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2018,26.92292431,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2019,26.21208613,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2020,24.67155198,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,France,2021,24.67155198,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2010,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2011,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2012,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2013,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2014,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2015,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2016,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2017,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2018,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2019,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2020,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gabon,2021,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2010,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2011,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2012,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2013,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2014,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2015,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2016,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2017,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2018,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2019,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2020,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Gambia,2021,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2010,1.7642875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2011,1.73493125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2012,1.705575,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2013,1.67621875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2014,1.6468625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2015,1.61750625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2016,1.58815,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2017,1.37453,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2018,1.29112,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2019,1.57214,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2020,1.65372,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Georgia,2021,1.60898,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2010,39.197711,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2011,36.422802,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2012,33.647141,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2013,31.507977,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2014,31.308092,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2015,29.833405,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2016,30.110759,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2017,27.748404,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2018,26.921134,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2019,25.792569,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2020,25.792569,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Germany,2021,25.792569,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2010,1.25325,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2011,1.283375,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2012,1.3155,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2013,1.337625,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2014,1.36095,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2015,1.438475,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2016,1.4646,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2017,1.4646,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2018,1.4646,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2019,1.4646,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2020,1.4646,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ghana,2021,1.4646,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2010,9.683925,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2011,9.702,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2012,9.935,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2013,9.925,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2014,9.917,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2015,9.908,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2016,10.136,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2017,10.134,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2018,10.122,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2019,10.115,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2020,10.122,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Greece,2021,10.087,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2010,0.012277778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2011,0.012733333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2012,0.013188889,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2013,0.013644444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2014,0.0141,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2015,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2016,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2017,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2018,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2019,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2020,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Grenada,2021,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2010,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2011,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2012,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2013,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2014,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2015,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2016,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2017,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2018,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2019,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2020,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guatemala,2021,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2010,0.739943891,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2011,0.758700905,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2012,0.777457919,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2013,0.796214932,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2014,0.814971946,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2015,0.833728959,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2016,0.852485973,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2017,0.871242986,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2018,0.89,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2019,0.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2020,0.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea,2021,0.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2010,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2011,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2012,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2013,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2014,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2015,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2016,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2017,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2018,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2019,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2020,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guinea Bissau,2021,0.19,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2010,1.4447,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2011,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2012,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2013,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2014,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2015,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2016,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2017,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2018,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2019,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2020,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Guyana,2021,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2010,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2011,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2012,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2013,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2014,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2015,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2016,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2017,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2018,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2019,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2020,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Haiti,2021,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2010,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2011,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2012,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2013,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2014,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2015,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2016,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2017,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2018,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2019,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2020,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Honduras,2021,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2010,5.265466667,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2011,5.158233333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2012,5.051,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2013,4.5928,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2014,4.2361,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2015,4.3094,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2016,4.3494,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2017,4.477652867,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2018,4.67013259,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2019,4.351143843,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2020,4.6576,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Hungary,2021,4.6576,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2010,0.2658,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2011,0.2963,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2012,0.2943,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2013,0.2912,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2014,0.2752,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2015,0.2783,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2016,0.26,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2017,0.2783,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2018,0.2783,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2019,0.2783,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2020,0.2783,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iceland,2021,0.2783,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2010,761.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2011,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2012,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2013,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2014,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2015,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2016,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2017,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2018,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2019,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2020,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,India,2021,761.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2010,194.33538961,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2011,200.36961039,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2012,206.403831169,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2013,212.438051948,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2014,218.472272727,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2015,220.553636364,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2016,222.635,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2017,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2018,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2019,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2020,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Indonesia,2021,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2010,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2011,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2012,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2013,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2014,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2015,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2016,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2017,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2018,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2019,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2020,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iran,2021,93.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2010,47.428571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2011,45.571428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2012,43.714285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2013,41.857142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2014,40.0,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2015,34.92,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2016,38.55,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2017,43.07,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2018,33.57,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2019,56.62,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2020,45.042,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Iraq,2021,42.424,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2010,0.921939394,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2011,0.94047197,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2012,0.959004546,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2013,1.010870455,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2014,1.062736364,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2015,1.065602273,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2016,1.105468182,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2017,1.316784091,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2018,1.5281,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2019,1.5357,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2020,1.5408,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ireland,2021,1.581,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2010,1.919,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2011,1.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2012,2.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2013,2.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2014,2.083,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2015,2.124,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2016,2.253,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2017,2.307,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2018,2.271,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2019,2.318,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2020,2.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Israel,2021,2.62,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2010,33.900307692,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2011,34.013538461,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2012,34.126769231,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2013,34.2,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2014,34.194,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2015,34.188,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2016,34.102,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2017,34.016,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2018,33.93,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2019,33.91,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2020,33.89,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Italy,2021,33.89,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2010,1.242920635,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2011,1.320190476,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2012,1.397460317,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2013,1.474730159,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2014,1.552,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2015,0.825,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2016,1.354,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2017,1.147304569,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2018,0.940609137,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2019,0.733913706,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2020,0.527218274,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jamaica,2021,0.462827428,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2010,81.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2011,80.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2012,80.7,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2013,80.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2014,80.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2015,79.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2016,79.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2017,79.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2018,79.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2019,78.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2020,78.3,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Japan,2021,78.3,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2010,0.893,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2011,0.8991,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2012,0.849,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2013,0.901,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2014,1.0223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2015,1.0072,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2016,1.0441,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2017,1.0536,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2018,1.0764,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2019,1.10486,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2020,1.10486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Jordan,2021,1.10486,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2010,23.813,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2011,21.944,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2012,21.394,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2013,22.531,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2014,23.078,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2015,21.665,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2016,24.079,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2017,24.451,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2018,23.542,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2019,23.636,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2020,24.564,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kazakhstan,2021,24.564,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2010,3.218,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2011,3.2184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2012,3.2188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2013,3.2192,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2014,3.2196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2015,3.22,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2016,4.032,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2017,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2018,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2019,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2020,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kenya,2021,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2010,1.083930769,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2011,1.098984615,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2012,1.114038462,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2013,1.129092308,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2014,1.144146154,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2015,1.1592,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2016,1.1942,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2017,1.25,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2018,1.25,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2019,1.25,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2020,1.25,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kuwait,2021,1.25,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2010,7.7294,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2011,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2012,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2013,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2014,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2015,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2016,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2017,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2018,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2019,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2020,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Kyrgyzstan,2021,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2010,5.758,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2011,6.211,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2012,6.664,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2013,7.117,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2014,7.57,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2015,7.85,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2016,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2017,7.32,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2018,7.32,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2019,7.35,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2020,7.35,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Laos,2021,7.35,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2010,0.2434,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2011,0.2518,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2012,0.2602,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2013,0.2478,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2014,0.1682,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2015,0.1765,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2016,0.185857867,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2017,0.175910255,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2018,0.183349,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2019,0.178629,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2020,0.181211,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Latvia,2021,0.181211,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2010,1.575,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2011,1.628,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2012,1.681,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2013,1.734,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2014,1.787,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2015,1.84,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2016,1.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2017,1.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2018,1.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2019,1.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2020,1.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lebanon,2021,1.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2010,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2011,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2012,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2013,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2014,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2015,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2016,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2017,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2018,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2019,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2020,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lesotho,2021,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2010,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2011,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2012,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2013,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2014,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2015,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2016,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2017,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2018,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2019,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2020,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Liberia,2021,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2010,5.555428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2011,5.692714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2012,5.83,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2013,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2014,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2015,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2016,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2017,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2018,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2019,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2020,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Libya,2021,5.83,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2010,1.088721154,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2011,0.894634615,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2012,0.700548077,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2013,0.506461538,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2014,0.3576,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2015,0.393528,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2016,0.3079,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2017,0.259,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2018,0.25439,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2019,0.25439,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2020,0.25439,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Lithuania,2021,0.25439,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2010,0.0475,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2011,0.0485,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2012,0.0445,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2013,0.0431,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2014,0.0456,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2015,0.0448,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2016,0.0444,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2017,0.0456,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2018,0.0522,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2019,0.0493,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2020,0.0475,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Luxembourg,2021,0.0475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2010,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2011,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2012,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2013,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2014,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2015,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2016,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2017,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2018,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2019,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2020,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Madagascar,2021,13.5569,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2010,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2011,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2012,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2013,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2014,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2015,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2016,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2017,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2018,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2019,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2020,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malawi,2021,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2010,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2011,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2012,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2013,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2014,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2015,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2016,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2017,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2018,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2019,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2020,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malaysia,2021,5.488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2010,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2011,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2012,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2013,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2014,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2015,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2016,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2017,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2018,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2019,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2020,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Maldives,2021,0.0059,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2010,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2011,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2012,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2013,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2014,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2015,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2016,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2017,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2018,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2019,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2020,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mali,2021,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2010,0.039188889,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2011,0.039544444,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2012,0.0399,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2013,0.0453,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2014,0.0639,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2015,0.0618,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2016,0.0628,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2017,0.066,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2018,0.063729091,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2019,0.062857643,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2020,0.063145915,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Malta,2021,0.06145767,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2010,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2011,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2012,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2013,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2014,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2015,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2016,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2017,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2018,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2019,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2020,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritania,2021,1.3502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2010,0.647,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2011,0.571,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2012,0.582,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2013,0.608,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2014,0.62,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2015,0.612,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2016,0.626,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2017,0.616,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2018,0.596,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2019,0.598,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2020,0.608,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mauritius,2021,0.605,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2010,80.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2011,80.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2012,82.733,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2013,81.647,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2014,84.932,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2015,85.665,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2016,86.577,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2017,87.84,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2018,88.832,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2019,89.351,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2020,89.548,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mexico,2021,89.944,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2010,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2011,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2012,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2013,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2014,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2015,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2016,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2017,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2018,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2019,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2020,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Monaco,2021,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2010,0.530766667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2011,0.510533333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2012,0.4903,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2013,0.470066667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2014,0.449833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2015,0.4296,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2016,0.4624,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2017,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2018,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2019,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2020,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mongolia,2021,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2010,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2011,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2012,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2013,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2014,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2015,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2016,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2017,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2018,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2019,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2020,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Montenegro,2021,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2010,10.431,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2011,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2012,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2013,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2014,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2015,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2016,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2017,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2018,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2019,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2020,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Morocco,2021,10.431,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2010,1.281592857,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2011,1.319874286,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2012,1.358155714,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2013,1.396437143,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2014,1.434718571,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2015,1.473,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2016,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2017,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2018,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2019,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2020,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Mozambique,2021,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2010,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2011,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2012,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2013,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2014,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2015,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2016,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2017,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2018,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2019,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2020,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Myanmar,2021,33.3914,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2010,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2011,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2012,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2013,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2014,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2015,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2016,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2017,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2018,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2019,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2020,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Namibia,2021,0.288,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2010,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2011,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2012,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2013,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2014,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2015,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2016,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2017,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2018,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2019,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2020,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nepal,2021,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2010,10.921,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2011,10.8624,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2012,10.7232,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2013,9.8579,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2014,8.9187,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2015,8.4108,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2016,8.0234,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2017,7.9162,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2018,8.0902,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2019,8.4034,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2020,8.306,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Netherlands,2021,8.0892,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2010,5.201,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2011,5.140507163,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2012,5.080014326,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2013,5.019521488,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2014,4.959028651,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2015,4.898535814,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2016,4.838042977,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2017,4.851862233,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2018,4.878866571,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2019,4.889633928,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2020,4.889633928,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,New Zealand,2021,4.889633928,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2010,1.513376364,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2011,1.498514545,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2012,1.470527727,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2013,1.442540909,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2014,1.414554091,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2015,1.386567273,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2016,1.358580454,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2017,1.330593636,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2018,1.302606818,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2019,1.274,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2020,1.27462,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nicaragua,2021,1.27462,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2010,1.174647619,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2011,1.212857143,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2012,1.251066667,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2013,1.381283333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2014,1.5115,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2015,1.7215,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2016,1.7472,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2017,1.581289,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2018,2.431511,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2019,2.5833078,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2020,2.5833078,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Niger,2021,2.5833078,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2010,12.475,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2011,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2012,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2013,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2014,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2015,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2016,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2017,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2018,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2019,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2020,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Nigeria,2021,12.475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2010,0.7422,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2011,0.6607,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2012,1.7062,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2013,0.4947,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2014,0.531219667,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2015,0.444139333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2016,1.043824,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2017,0.556014108,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2018,2.22339,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2019,1.59918,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2020,0.702084621,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Macedonia,2021,1.55976,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2010,2.8057,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2011,2.7688,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2012,2.7319,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2013,2.7539,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2014,2.7789,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2015,2.7136,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2016,2.6483,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2017,2.6912,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2018,2.689051652,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2019,2.686903304,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2020,2.684754956,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Norway,2021,2.64393,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2010,1.7067,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2011,1.7618,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2012,1.8169,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2013,1.872,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2014,1.862333333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2015,1.872,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2016,1.872,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2017,1.872,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2018,1.873,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2019,1.915,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2020,1.915,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Oman,2021,1.915,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2010,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2011,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2012,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2013,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2014,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2015,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2016,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2017,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2018,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2019,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2020,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Pakistan,2021,183.45,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2010,0.3311,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2011,0.3239,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2012,0.3492,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2013,0.3657,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2014,0.3427,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2015,0.3653,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2016,0.3636,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2017,0.3752,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2018,0.3895,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2019,0.4179,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2020,0.4484,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Palestine,2021,0.4384,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2010,1.037,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2011,1.096266667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2012,1.155533333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2013,1.2148,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2014,1.2011,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2015,1.2513,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2016,1.2114,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2017,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2018,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2019,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2020,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Panama,2021,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2010,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2011,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2012,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2013,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2014,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2015,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2016,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2017,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2018,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2019,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2020,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Papua New Guinea,2021,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2010,2.131348485,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2011,2.284083333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2012,2.413,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2013,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2014,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2015,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2016,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2017,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2018,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2019,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2020,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Paraguay,2021,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2010,18.3948,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2011,20.7607,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2012,23.1266,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2013,25.4925,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2014,27.8584,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2015,30.2243,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2016,32.5896,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2017,34.9558,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2018,37.322,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2019,38.55,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2020,38.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Peru,2021,38.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2010,83.273,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2011,84.059,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2012,84.248,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2013,84.447,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2014,83.45,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2015,86.401,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2016,87.684728978,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2017,91.79128,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2018,92.15781079,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2019,85.99451398,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2020,87.47726918,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Philippines,2021,89.00036353,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2010,10.866,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2011,10.7935,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2012,11.48,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2013,10.7165,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2014,10.689,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2015,10.503,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2016,10.582,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2017,10.081,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2018,10.031,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2019,9.859,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2020,9.2121201,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Poland,2021,9.814,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2010,8.038595263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2011,7.782907368,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2012,7.479369474,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2013,7.206098246,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2014,6.932827018,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2015,6.659555789,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2016,6.402677895,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2017,6.16332,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2018,6.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2019,6.13289,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2020,6.13289,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Portugal,2021,6.13289,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2010,4.1527,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2011,3.97706,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2012,3.80142,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2013,3.62578,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2014,3.45014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2015,3.2745,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2016,3.2745,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2017,3.2745,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2018,3.2745,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2019,3.2745,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2020,3.2745,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Puerto Rico,2021,3.2745,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2010,0.6407625,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2011,0.690575,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2012,0.7473875,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2013,0.7833,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2014,0.8392,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2015,0.8126,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2016,0.9126,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2017,0.853,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2018,0.74927708,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2019,0.882904078,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2020,0.88352445,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Qatar,2021,0.934198215,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2010,27.542888889,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2011,27.584666667,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2012,27.626444444,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2013,27.668222222,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2014,27.71,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2015,26.962,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2016,27.082,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2017,27.082,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2018,27.082,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2019,27.082,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2020,27.082,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Korea,2021,27.082,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2010,0.937777778,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2011,0.911833333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2012,0.885888889,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2013,0.858944444,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2014,0.837,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2015,0.84,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2016,0.843,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2017,0.84,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2018,0.837,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2019,0.84,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2020,0.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Moldova,2021,0.798,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2010,6.22,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2011,6.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2012,6.482,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2013,6.418,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2014,6.282,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2015,6.465,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2016,6.374,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2017,6.773,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2018,6.416,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2019,6.993,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2020,7.396,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Romania,2021,7.864,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2010,62.3,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2011,61.866666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2012,61.433333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2013,61.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2014,70.81,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2015,62.46,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2016,64.79,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2017,64.41,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2018,64.82,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2019,64.82,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2020,64.82,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Russia,2021,64.82,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2010,0.376153759,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2011,0.401025564,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2012,0.425897368,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2013,0.450769173,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2014,0.475640977,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2015,0.500512782,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2016,0.525384586,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2017,0.550256391,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2018,0.575128196,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2019,0.61,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2020,0.6005,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Rwanda,2021,0.61,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2012,0.0156,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2013,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2014,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2015,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2016,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2017,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2018,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2019,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2020,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Kitts and Nevis,2021,0.0156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2010,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2011,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2012,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2013,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2014,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2015,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2016,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2017,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2018,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2019,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2020,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Lucia,2021,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2010,0.008751667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2011,0.008668444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2012,0.008585222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2013,0.008502,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2014,0.008502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2015,0.008502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2016,0.008502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2017,0.008502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2018,0.008502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2019,0.008502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2020,0.008502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saint Vincent and the Grenadines,2021,0.008502,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2010,0.032056522,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2011,0.033530435,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2012,0.035004348,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2013,0.036478261,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2014,0.037952174,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2015,0.039426087,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2016,0.0409,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2017,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2018,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2019,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2020,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sao Tome and Principe,2021,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2010,21.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2011,21.345,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2012,20.88,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2013,22.261,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2014,23.414,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2015,24.832,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2016,23.934,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2017,23.35,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2018,25.992,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2019,25.992,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2020,25.992,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Saudi Arabia,2021,25.992,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2010,2.357367659,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2011,2.374413617,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2012,2.391459574,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2013,2.408505531,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2014,2.425551489,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2015,2.442597446,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2016,2.459643404,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2017,2.476689361,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2018,3.027697964,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2019,3.021097964,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2020,3.021097964,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Senegal,2021,3.021097964,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2010,4.040333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2011,3.954666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2012,3.869,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2013,4.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2014,3.9359,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2015,4.6885,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2016,4.7065,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2017,5.3774,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2018,5.5575,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2019,5.6186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2020,5.3245,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Serbia,2021,5.051,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2010,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2011,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2012,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2013,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2014,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2015,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2016,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2017,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2018,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2019,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2020,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Seychelles,2021,0.0137,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2010,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2011,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2012,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2013,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2014,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2015,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2016,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2017,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2018,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2019,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2020,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sierra Leone,2021,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2010,1.4926675,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2011,1.327034,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2012,1.1614005,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2013,0.995767,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2014,0.8301335,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2015,0.6645,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2016,0.6646,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2017,0.6594,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2018,0.6566,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2019,0.6636,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2020,0.66,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Singapore,2021,0.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2010,0.5807,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2011,0.5738,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2012,0.6653,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2013,0.5043,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2014,0.5593,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2015,0.5527179,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2016,0.535,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2017,0.5563,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2018,0.5565,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2019,0.5586,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2020,0.555,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovakia,2021,0.5662731,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2010,0.939166667,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2011,0.940033333,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2012,0.9281,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2013,1.1556,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2014,0.9803,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2015,0.897,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2016,0.8873,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2017,0.9314,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2018,0.961,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2019,0.944,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2020,1.004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Slovenia,2021,0.931,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2010,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2011,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2012,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2013,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2014,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2015,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2016,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2017,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2018,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2019,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2020,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Somalia,2021,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2010,14.875076923,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2011,15.083384615,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2012,15.291692308,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2013,15.5,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2014,17.08,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2015,18.66,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2016,19.05,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2017,19.38,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2018,19.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2019,18.9,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2020,19.18879158,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Africa,2021,19.604,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2012,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2013,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2014,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2015,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2016,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2017,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2018,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2019,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2020,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,South Sudan,2021,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2010,35.224,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2011,35.037,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2012,36.641,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2013,32.3145,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2014,32.851,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2015,31.514,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2016,31.221,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2017,30.094,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2018,29.409,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2019,29.2145,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2020,29.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Spain,2021,29.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2010,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2011,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2012,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2013,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2014,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2015,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2016,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2017,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2018,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2019,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2020,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sri Lanka,2021,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2012,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2013,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2014,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2015,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2016,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2017,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2018,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2019,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2020,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sudan,2021,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2010,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2011,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2012,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2013,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2014,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2015,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2016,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2017,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2018,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2019,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2020,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Suriname,2021,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2010,2.689,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2011,2.6262,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2012,2.5634,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2013,2.5006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2014,2.4378,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2015,2.375,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2016,2.3136,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2017,2.2522,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2018,2.1908,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2019,2.1294,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2020,2.484,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Sweden,2021,2.068,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2010,2.10744,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2011,2.05612,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2012,2.0048,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2013,1.7198,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2014,1.7038,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2015,1.7358,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2016,1.7348,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2017,1.7338,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2018,1.7678,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2019,1.7308,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2020,1.7418,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Switzerland,2021,1.7168,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2010,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2011,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2012,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2013,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2014,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2015,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2016,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2017,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2018,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2019,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2020,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Syria,2021,16.7604,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2010,10.203777778,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2011,9.881022222,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2012,9.558266667,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2013,9.235511111,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2014,8.912755556,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2015,8.913,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2016,8.749,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2017,7.988,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2018,9.774,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2019,10.602,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2020,9.9,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tajikistan,2021,9.9,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2010,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2011,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2012,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2013,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2014,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2015,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2016,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2017,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2018,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2019,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2020,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Thailand,2021,57.306,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2010,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2011,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2012,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2013,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2014,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2015,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2016,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2017,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2018,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2019,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2020,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,East Timor,2021,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2010,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2011,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2012,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2013,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2014,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2015,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2016,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2017,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2018,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2019,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2020,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Togo,2021,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2010,0.376833333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2011,0.3832,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2012,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2013,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2014,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2015,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2016,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2017,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2018,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2019,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2020,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Trinidad and Tobago,2021,0.3832,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2010,3.2595,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2011,3.305,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2012,3.39732,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2013,3.48964,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2014,3.58196,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2015,3.67428,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2016,3.7666,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2017,3.616,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2018,3.8447,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2019,3.8402,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2020,3.5874,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Tunisia,2021,3.5874,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2010,28.03585,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2011,28.049491667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2012,28.063133333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2013,28.076775,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2014,28.090416667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2015,28.104058333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2016,28.1177,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2017,28.8562,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2018,26.88,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2019,27.7081,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2020,26.2447,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkmenistan,2021,17.3798654,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2010,44.492,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2011,47.175,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2012,48.275,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2013,50.6505,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2014,51.263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2015,55.6935,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2016,58.021,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2017,57.498676149,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2018,59.385,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2019,62.147671575,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2020,62.076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Turkey,2021,58.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2010,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2011,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2012,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2013,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2014,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2015,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2016,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2017,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2018,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2019,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2020,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uganda,2021,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2010,14.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2011,13.9965,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2012,13.147,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2013,12.2975,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2014,11.448,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2015,9.652,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2016,9.862,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2017,11.202,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2018,11.202,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2019,11.068,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2020,9.87,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Ukraine,2021,9.869,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2010,4.464576064,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2011,4.557891276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2012,4.651206489,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2013,4.744521702,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2014,4.837836915,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2015,4.931152127,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2016,5.02446734,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2017,5.001771428,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2018,5.088497164,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2019,5.0331498,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2020,4.981312345,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Arab Emirates,2021,4.90069042,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2010,8.0314,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2011,7.682,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2012,8.214,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2013,7.5541,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2014,7.1092,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2015,8.1595,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2016,8.42,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2017,8.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2018,8.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2019,8.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2020,8.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Kingdom,2021,8.42,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2010,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2011,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2012,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2013,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2014,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2015,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2016,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2017,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2018,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2019,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2020,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United Republic of Tanzania,2021,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2010,485.59,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2011,477.33,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2012,469.07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2013,460.81,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2014,452.55,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2015,444.29,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2016,444.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2017,444.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2018,444.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2019,444.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2020,444.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,United States of America,2021,444.29,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2010,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2011,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2012,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2013,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2014,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2015,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2016,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2017,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2018,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2019,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2020,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uruguay,2021,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2010,53.663888889,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2011,53.196666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2012,52.729444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2013,52.262222222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2014,51.795,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2015,55.136,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2016,54.56,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2017,58.9,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2018,56.438,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2019,53.976,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2020,51.216,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Uzbekistan,2021,43.662,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2010,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2011,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2012,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2013,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2014,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2015,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2016,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2017,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2018,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2019,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2020,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Venezuela,2021,22.6263,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2010,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2011,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2012,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2013,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2014,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2015,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2016,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2017,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2018,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2019,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2020,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Vietnam,2021,82.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2010,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2011,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2012,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2013,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2014,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2015,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2016,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2017,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2018,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2019,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2020,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Yemen,2021,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2010,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2011,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2012,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2013,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2014,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2015,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2016,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2017,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2018,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2019,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2020,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zambia,2021,1.572,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2010,3.5046375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2011,3.48285,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2012,3.4610625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2013,3.439275,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2014,3.4174875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2015,3.3957,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2016,3.4017,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2017,3.3391,10^9 m3/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2018,3.771381651,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2019,4.236264373,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2020,4.909679395,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Total water withdrawal,Zimbabwe,2021,4.909679395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2010,722.70794779,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2011,696.529476046,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2012,668.698867368,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2013,645.913731462,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2014,622.715773007,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2015,603.578905997,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2016,588.196623262,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2017,571.57537473,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2018,555.319866685,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2019,539.400853583,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2020,522.754279137,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Afghanistan,2021,508.059185432,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2010,402.862773002,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2011,396.124460208,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2012,388.749990059,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2013,380.898741745,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2014,372.726068634,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2015,319.169493225,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2016,315.161452561,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2017,379.251603224,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2018,332.984244423,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2019,393.544204827,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2020,274.168608113,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Albania,2021,278.837430072,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2010,221.77724567,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2011,224.076824029,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2012,226.110378418,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2013,230.557605376,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2014,234.716904908,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2015,238.574798561,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2016,247.351660212,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2017,254.323734423,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2018,249.528901503,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2019,244.980912002,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2020,240.773276679,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Algeria,2021,236.814870326,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2010,30.208629148,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2011,29.094223609,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2012,28.020955133,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2013,26.993534479,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2014,26.017075798,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2015,25.092683478,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2016,24.208751467,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2017,23.364185888,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2018,22.568604577,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2019,21.815200218,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2020,21.113729171,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Angola,2021,20.455733335,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2010,123.861202104,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2011,127.490722332,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2012,131.167735018,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2013,129.947907839,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2014,128.871755794,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2015,127.861598159,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2016,126.982023762,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2017,126.208584379,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2018,125.510226355,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2019,124.841234517,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2020,124.104290771,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Antigua and Barbuda,2021,123.365408339,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2010,903.023453239,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2011,909.906711682,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2012,900.545177846,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2013,891.284331521,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2014,882.214467598,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2015,873.38334212,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2016,865.159647717,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2017,857.571883046,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2018,850.64042101,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2019,844.330337428,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2020,838.883851934,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Argentina,2021,834.423296003,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2010,672.370331125,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2011,832.372815619,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2012,1009.119821742,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2013,1018.306774178,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2014,989.470333192,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2015,1135.970846889,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2016,1109.624245639,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2017,1006.338530178,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2018,956.793746785,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2019,1015.740611401,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2020,1008.337586719,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Armenia,2021,1063.069738378,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2010,620.82273045,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2011,596.501306926,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2012,704.774095463,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2013,854.45596536,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2014,794.219615103,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2015,727.532674319,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2016,703.150530749,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2017,708.339301125,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2018,715.45599404,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2019,618.365535271,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2020,530.96894899,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Australia,2021,638.090475288,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2010,407.029509012,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2011,402.158682834,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2012,396.846233945,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2013,391.052562474,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2014,384.577092211,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2015,376.896354586,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2016,369.481775372,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2017,363.586239181,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2018,358.500037546,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2019,353.605992833,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2020,352.500966291,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Austria,2021,351.935792565,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2010,1187.589055647,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2011,1206.964750774,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2012,1262.443103086,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2013,1247.493623679,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2014,1189.914061762,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2015,1185.078694335,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2016,1190.627979577,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2017,1203.387715139,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2018,1198.421436565,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2019,1230.362933611,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2020,1186.588054722,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Azerbaijan,2021,1257.443038839,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2010,331.817863468,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2011,337.587313497,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2012,339.32673011,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2013,334.577400584,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2014,326.892598316,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2015,315.165379234,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2016,308.159195721,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2017,298.180849706,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2018,292.065028843,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2019,290.726468155,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2020,294.016321155,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bahrain,2021,296.870354994,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2010,241.726023816,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2011,238.797417007,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2012,235.846189334,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2013,232.876502176,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2014,229.992954855,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2015,227.269847304,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2016,224.489764243,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2017,221.701719355,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2018,219.141817184,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2019,216.715918033,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2020,214.250365834,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bangladesh,2021,211.802043256,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2010,294.855320683,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2011,294.025830714,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2012,293.268934855,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2013,292.561356618,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2014,291.899255116,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2015,291.2799416,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2016,290.688285262,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2017,290.128122011,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2018,289.608420812,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2019,289.099864373,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2020,288.571499824,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Barbados,2021,288.051209104,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2010,159.072251171,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2011,158.305313121,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2012,157.352262095,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2013,156.225218981,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2014,162.063368944,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2015,149.165892574,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2016,149.565672412,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2017,143.903774626,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2018,143.46752446,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2019,140.376687092,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2020,137.952653902,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belarus,2021,148.775856591,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2010,520.870344377,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2011,486.50283235,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2012,452.718436419,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2013,420.056925639,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2014,385.801813286,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2015,355.075783431,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2016,364.444767336,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2017,385.795150753,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2018,365.182267344,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2019,356.064096924,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2020,382.399949765,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belgium,2021,380.763109143,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2010,313.561374206,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2011,306.489691629,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2012,299.650802975,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2013,293.018613935,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2014,286.659003505,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2015,280.656124,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2016,274.969848603,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2017,269.554008215,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2018,264.352232337,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2019,259.576710058,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2020,255.747352002,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Belize,2021,252.480432767,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2010,22.065950726,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2011,22.325146369,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2012,22.553962817,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2013,22.754638891,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2014,22.91938669,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2015,23.049940715,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2016,21.225417037,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2017,20.178016672,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2018,19.596868956,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2019,19.039181986,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2020,18.508085384,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Benin,2021,18.004300258,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2010,479.081976879,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2011,473.833325623,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2012,468.699082709,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2013,463.719441506,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2014,459.016482494,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2015,454.744818196,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2016,450.81032489,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2017,447.018400494,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2018,443.513678067,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2019,440.414406503,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2020,437.537054728,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bhutan,2021,434.73451612,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2010,205.377187534,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2011,203.078388103,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2012,200.845806649,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2013,198.681599192,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2014,196.586494057,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2015,194.566465451,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2016,192.611399346,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2017,190.722331876,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2018,188.908064639,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2019,187.161878578,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2020,185.079751766,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bolivia,2021,182.533648822,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2010,94.829530532,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2011,92.407020122,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2012,89.315880805,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2013,86.186756915,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2014,83.127762815,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2015,81.469010325,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2016,85.571599581,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2017,80.35506112,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2018,83.217447599,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2019,80.805632031,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2020,86.56433666,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Botswana,2021,90.256306639,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2010,381.09839167,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2011,365.21376343,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2012,349.688978082,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2013,334.520171043,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2014,319.621114064,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2015,311.21184573,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2016,320.555618653,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2017,315.004496776,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2018,316.415655634,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2019,318.439340502,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2020,315.202462422,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brazil,2021,314.053964362,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2010,232.292142718,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2011,229.137298073,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2012,226.247682191,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2013,223.46260159,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2014,220.805652625,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2015,218.300718731,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2016,215.965483082,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2017,213.816248176,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2018,211.847819579,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2019,210.02264592,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2020,208.274378856,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Brunei,2021,206.568426914,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2010,784.969139018,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2011,846.478848966,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2012,763.186092947,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2013,735.8198248,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2014,729.204718141,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2015,770.174462425,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2016,785.161693216,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2017,787.75589536,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2018,762.21321991,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2019,768.8018998,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2020,727.449877672,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Bulgaria,2021,721.622894891,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2010,50.754350495,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2011,49.269240195,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2012,47.797873661,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2013,46.381326628,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2014,45.019653996,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2015,43.701205774,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2016,42.437295265,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2017,41.238448067,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2018,40.112347919,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2019,39.042291632,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2020,38.006514633,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burkina Faso,2021,37.012430792,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2010,30.690492248,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2011,29.622240814,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2012,28.594824204,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2013,27.597209224,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2014,26.68912072,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2015,26.111320549,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2016,25.689406545,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2017,25.108481459,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2018,24.370355625,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2019,23.587690207,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2020,22.921014479,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Burundi,2021,22.316568128,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2010,255.970770051,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2011,278.041625304,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2012,299.571717599,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2013,320.75474065,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2014,341.428800916,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2015,361.673542216,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2016,381.382307713,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2017,400.420833476,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2018,419.251176953,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2019,437.992600038,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2020,502.845565014,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cape Verde,2021,437.045966748,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2010,152.051737692,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2011,149.857090268,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2012,147.700897567,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2013,145.603077078,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2014,143.58203113,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2015,141.656996393,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2016,139.779721495,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2017,137.959882858,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2018,136.285027405,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2019,134.750384168,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2020,133.196233913,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cambodia,2021,131.653322803,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2010,54.753900234,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2011,53.225427142,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2012,51.748031778,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2013,50.312372156,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2014,48.8080832,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2015,47.295734702,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2016,45.90152596,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2017,44.619026932,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2018,43.402758739,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2019,42.214940839,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2020,41.0855168,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cameroon,2021,40.016724373,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2010,1194.545431938,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2011,1146.474834916,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2012,1103.530584384,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2013,1061.383762151,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2014,1022.127292985,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2015,983.988470207,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2016,988.729100217,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2017,991.756165368,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2018,956.278037137,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2019,921.551671388,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2020,890.845965836,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Canada,2021,884.628210836,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2010,15.55771623,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2011,15.321146013,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2012,15.18863446,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2013,15.096530338,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2014,15.108151442,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2015,15.043575532,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2016,14.783316344,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2017,14.509457264,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2018,14.230251355,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2019,13.917352808,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2020,13.569105113,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Central African Republic,2021,13.285313187,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2010,73.948733754,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2011,71.409261284,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2012,68.961699914,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2013,66.551832725,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2014,64.217851248,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2015,62.205300972,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2016,60.277188723,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2017,58.306162237,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2018,56.369402873,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2019,54.542525498,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2020,52.845647392,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chad,2021,51.199843537,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2010,2011.660439368,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2011,1973.992249604,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2012,1937.195457142,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2013,1901.110370261,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2014,1864.759349013,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2015,1828.532359373,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2016,1789.992069732,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2017,1762.248648875,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2018,1730.881830019,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2019,1700.151028245,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2020,1677.174698962,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Chile,2021,1660.580436731,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2010,428.00241369,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2011,431.993166347,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2012,431.664960401,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2013,431.891564048,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2014,422.994007623,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2015,419.647837078,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2016,421.346560785,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2017,419.086526888,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2018,415.168950687,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2019,414.169322422,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2020,398.983207196,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,China,2021,398.707881102,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2010,357.877541964,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2011,401.124685399,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2012,443.627891967,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2013,485.449855315,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2014,526.63061026,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2015,567.020993839,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2016,587.91472003,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2017,572.945104875,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2018,550.844046511,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2019,504.256590189,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2020,507.998134994,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Colombia,2021,514.97210897,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2010,15.243344756,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2011,14.923791658,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2012,14.608072713,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2013,14.298112792,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2014,13.99360772,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2015,13.694578043,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2016,13.40065824,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2017,13.129148811,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2018,12.881402218,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2019,12.642448792,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2020,12.40439314,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Comoros,2021,12.171002586,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2010,20.663000655,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2011,20.003420432,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2012,19.455760634,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2013,18.993112356,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2014,18.544505093,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2015,18.106834669,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2016,17.679412296,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2017,17.261696352,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2018,16.85332753,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2019,16.461029455,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2020,16.081585725,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Republic of Congo,2021,15.71333934,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2012,493.606269316,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2013,514.536385522,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2014,566.13731471,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2015,652.248162604,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2016,594.697934666,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2017,488.60176193,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2018,605.772009196,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2019,617.192628348,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2020,612.144065757,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Costa Rica,2021,668.774532461,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2010,252.833582302,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2011,261.100490321,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2012,265.096718414,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2013,258.415560147,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2014,256.744890023,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2015,255.973460656,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2016,261.897592922,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2017,237.111466828,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2018,236.886564908,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2019,241.418855176,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2020,246.529727946,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Croatia,2021,246.789823491,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2010,533.137970015,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2011,560.468112436,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2012,587.639306564,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2013,614.666911744,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2014,614.100250035,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2015,613.674166619,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2016,613.559569501,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2017,613.863036827,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2018,614.305270967,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2019,614.932077796,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2020,615.802669888,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cuba,2021,618.227613657,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2010,180.758192985,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2011,194.13389038,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2012,219.617554187,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2013,218.772065729,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2014,236.194716205,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2015,247.624823125,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2016,261.294736289,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2017,245.754528462,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2018,234.651071395,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2019,222.975238356,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2020,222.215578201,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Cyprus,2021,232.28000913,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2010,173.874494379,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2011,168.340406333,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2012,175.148759902,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2013,156.92537352,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2014,156.848098664,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2015,152.036365578,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2016,155.781127895,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2017,154.776639742,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2018,150.931317423,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2019,142.926680985,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2020,129.712856947,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Czech Republic,2021,128.344777647,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2010,63.117509162,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2011,59.838078162,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2012,56.701684364,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2013,53.629794358,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2014,50.531504893,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2015,49.24408841,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2016,47.989515984,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2017,46.764296997,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2018,45.579373459,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2019,44.440108368,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2020,43.339142967,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ivory Coast,2021,42.28799295,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2010,350.710825601,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2011,349.333187109,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2012,347.8736745,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2013,346.286804172,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2014,344.573543774,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2015,342.77436291,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2016,340.997741163,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2017,339.304400505,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2018,337.692085337,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2019,336.154213007,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2020,334.698407076,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,North Korea,2021,333.352469393,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2010,10.296536485,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2011,9.957137553,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2012,9.628457868,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2013,9.305741963,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2014,8.99052691,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2015,8.690909065,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2016,8.394839718,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2017,8.110743397,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2018,7.849589645,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2019,7.603421718,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2020,7.362161617,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Democratic Republic of the Congo,2021,7.128695839,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2010,129.421643428,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2011,133.374796629,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2012,127.517376582,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2013,147.468425124,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2014,144.343199509,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2015,142.978014709,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2016,155.426182923,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2017,156.136248441,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2018,191.759530517,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2019,163.149396865,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2020,167.609023625,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Denmark,2021,166.790223838,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2010,20.670170442,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2011,20.28157227,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2012,19.909944179,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2013,19.552293638,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2014,19.209634744,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2015,18.881818697,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2016,18.568087712,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2017,18.265138676,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2018,17.972035513,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2019,17.690974065,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2020,17.428698278,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Djibouti,2021,17.185907194,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2010,290.887935423,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2011,290.942946088,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2012,290.326326791,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2013,290.617416702,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2014,288.304911274,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2015,285.685717143,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2016,285.408490903,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2017,284.07880346,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2018,282.394137498,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2019,280.002240018,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2020,277.797069241,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominica,2021,276.197315362,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2010,732.015071982,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2011,761.367148582,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2012,790.036210176,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2013,818.0661887,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2014,845.499199338,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2015,872.38579289,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2016,862.295955238,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2017,852.605613246,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2018,843.237551404,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2019,834.221506905,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2020,825.288845186,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Dominican Republic,2021,816.514094018,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2010,661.659412185,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2011,650.884436315,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2012,640.537002249,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2013,630.796090998,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2014,621.506688121,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2015,612.377130956,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2016,603.299900819,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2017,594.000914179,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2018,582.874423061,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2019,571.848978363,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2020,563.888133191,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ecuador,2021,557.261858628,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2010,893.958084575,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2011,803.250634803,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2012,792.412341659,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2013,781.769645898,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2014,768.890188296,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2015,756.212926188,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2016,739.09622612,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2017,761.376043667,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2018,747.054448654,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2019,733.771777908,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2020,721.164131243,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Egypt,2021,709.303085648,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2010,278.599855422,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2011,264.029760428,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2012,249.544629999,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2013,235.155927471,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2014,220.896760751,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2015,209.84532791,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2016,197.511258569,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2017,187.617204588,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2018,175.487268603,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2019,164.533187818,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2020,152.85734159,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,El Salvador,2021,177.477731742,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2010,18.090055586,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2011,17.298800966,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2012,16.587971542,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2013,15.917153627,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2014,15.287414983,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2015,14.699626496,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2016,14.153704947,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2017,13.648639892,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2018,13.181624815,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2019,12.749262571,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2020,12.405634163,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Equatorial Guinea,2021,12.114048258,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2010,184.895322879,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2011,181.445767357,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2012,178.933996106,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2013,176.558010683,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2014,175.120545822,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2015,174.25118398,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2016,172.942159168,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2017,171.331021248,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2018,168.92215475,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2019,166.341890318,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2020,163.673117225,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eritrea,2021,160.759625137,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2010,1383.486442339,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2011,1411.009598253,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2012,1233.100624337,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2013,1323.54480562,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2014,1308.256299229,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2015,1201.936444259,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2016,1330.948449989,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2017,1354.686732714,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2018,1216.610069372,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2019,758.259553789,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2020,641.585730576,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Estonia,2021,752.426349495,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2010,970.979707615,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2011,966.191441607,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2012,960.912110732,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2013,955.004788437,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2014,948.603962287,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2015,941.852097473,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2016,934.77248618,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2017,927.574496912,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2018,920.35007773,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2019,913.122545662,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2020,904.582625746,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Eswatini,2021,895.769502068,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2010,101.778221251,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2011,101.578596525,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2012,101.332762149,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2013,101.100539897,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2014,100.85093431,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2015,100.552715188,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2016,100.196377302,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2017,97.488908062,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2018,94.91724416,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2019,92.429417253,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2020,90.007833457,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ethiopia,2021,87.694002643,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2010,93.794639454,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2011,93.465660452,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2012,93.188256743,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2013,92.944026677,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2014,92.730132378,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2015,92.56432621,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2016,92.446298936,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2017,92.38111508,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2018,92.383427131,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2019,92.43683755,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2020,92.240298472,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Fiji,2021,91.822498134,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2010,430.427608713,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2011,430.375065053,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2012,431.992165684,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2013,433.648200486,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2014,431.364152463,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2015,432.192476264,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2016,418.545648499,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2017,417.563823723,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2018,507.663819942,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2019,633.881471771,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2020,632.972285941,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Finland,2021,632.226347148,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2010,457.653906064,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2011,480.220968551,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2012,444.940066036,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2013,428.782234455,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2014,429.275794577,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2015,440.62218749,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2016,413.17833059,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2017,420.08549315,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2018,418.852558102,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2019,407.021494133,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2020,382.623010251,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,France,2021,382.318300207,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2010,81.292498123,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2011,78.476727786,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2012,75.73344658,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2013,73.124854775,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2014,70.722041025,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2015,68.572262397,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2016,66.676061712,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2017,64.993470282,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2018,63.457681801,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2019,62.021103227,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2020,60.674185729,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gabon,2021,59.414508673,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2010,52.444800041,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2011,50.845455837,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2012,49.29612317,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2013,47.814712342,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2014,46.413484762,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2015,45.092766383,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2016,43.845907528,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2017,42.667885109,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2018,41.555619907,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2019,40.496109225,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2020,39.471716145,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Gambia,2021,38.486073042,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2010,459.829348752,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2011,453.972970399,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2012,448.321608178,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2013,442.738660066,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2014,436.343391442,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2015,428.917961503,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2016,421.135952014,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2017,364.413160476,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2018,342.261072416,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2019,416.923574266,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2020,439.128689146,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Georgia,2021,428.150229645,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2010,481.987920333,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2011,447.326098409,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2012,412.617669643,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2013,385.746192752,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2014,382.464468553,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2015,363.497409009,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2016,365.726206384,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2017,335.837993762,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2018,324.755210992,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2019,310.20018836,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2020,309.526967974,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Germany,2021,309.231700624,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2010,49.003470967,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2011,48.972673792,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2012,48.978430205,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2013,48.595676236,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2014,48.266871913,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2015,49.824323345,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2016,49.556235517,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2017,48.460965629,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2018,47.443135373,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2019,46.462360444,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2020,45.512173698,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ghana,2021,44.60751735,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2010,877.661360569,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2011,881.621303576,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2012,906.177558812,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2013,909.34036862,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2014,912.918006118,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2015,916.843633466,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2016,942.906350683,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2017,947.791236775,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2018,951.917805913,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2019,956.589468683,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2020,962.87829264,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Greece,2021,965.691481341,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2010,107.662972998,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2011,110.803645498,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2012,113.783636629,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2013,116.674030052,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2014,119.519886075,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2015,118.507312153,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2016,117.533301102,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2017,116.605056194,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2018,115.727441357,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2019,114.891952674,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2020,114.01955314,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Grenada,2021,113.153037477,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2010,228.568544537,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2011,224.094821347,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2012,219.727178972,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2013,215.53347924,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2014,211.540982605,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2015,207.741876859,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2016,204.045128219,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2017,200.503983328,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2018,197.273903845,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2019,194.319789542,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2020,191.45043996,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guatemala,2021,188.778329172,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2010,72.043957488,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2011,72.067027002,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2012,72.062296203,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2013,72.020259015,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2014,71.909088404,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2015,71.712463676,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2016,71.45143279,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2017,71.175394529,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2018,70.888860286,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2019,69.112584322,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2020,67.397931701,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea,2021,65.770483478,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2010,121.233777006,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2011,118.084519927,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2012,114.962210711,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2013,111.912628044,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2014,108.988136928,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2015,106.209392376,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2016,103.567519482,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2017,101.073184433,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2018,98.703606058,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2019,96.42433202,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2020,94.254073264,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guinea Bissau,2021,92.20073945,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2010,1931.592711637,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2011,1941.200972818,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2012,1941.889817545,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2013,1932.915897354,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2014,1923.407201294,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2015,1913.431369043,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2016,1903.207405739,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2017,1892.821767909,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2018,1839.177914079,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2019,1808.694302244,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2020,1812.213215722,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Guyana,2021,1795.624230176,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2010,147.314607107,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2011,145.665516612,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2012,143.44308312,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2013,141.308926066,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2014,139.25249262,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2015,137.261771546,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2016,135.338849745,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2017,133.473950441,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2018,131.669503009,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2019,129.923216275,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2020,128.241400906,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Haiti,2021,126.664447273,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2010,190.156518813,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2011,186.37277524,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2012,182.772170452,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2013,179.33952834,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2014,176.054679275,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2015,172.89785739,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2016,169.858821634,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2017,166.929092635,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2018,164.099317359,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2019,161.364353179,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2020,158.766807719,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Honduras,2021,156.34812803,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2010,527.241307089,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2011,518.24639435,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2012,509.064235924,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2013,464.170547303,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2014,429.280755857,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2015,437.758260003,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2016,443.133358546,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2017,457.419537721,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2018,477.696560417,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2019,445.275755143,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2020,477.67449154,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Hungary,2021,479.681014597,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2010,834.974696309,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2011,927.987772986,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2012,916.882412868,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2013,898.698861813,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2014,839.936028128,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2015,840.633117864,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2016,774.558724957,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2017,809.878009033,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2018,788.50589042,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2019,771.397051894,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2020,758.995170031,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iceland,2021,751.481766509,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2010,613.406130428,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2011,605.110668813,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2012,597.102890514,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2013,589.405237317,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2014,582.139630713,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2015,575.265907122,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2016,568.488974384,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2017,561.957190707,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2018,555.878862136,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2019,550.2084954,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2020,544.977811157,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,India,2021,540.650432537,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2010,796.403726938,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2011,810.885698454,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2012,824.88053759,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2013,838.761354121,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2014,852.642065756,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2015,851.256163453,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2016,850.238095309,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2017,841.723880148,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2018,833.630253382,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2019,825.849926567,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2020,818.938653886,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Indonesia,2021,813.269058844,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2010,1237.82974879,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2011,1222.116440818,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2012,1206.604105084,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2013,1189.157211019,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2014,1166.809018201,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2015,1140.714520835,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2016,1119.964243731,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2017,1104.075688897,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2018,1089.729698213,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2019,1077.812742963,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2020,1068.848593335,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iran,2021,1061.150570192,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2010,1516.992197428,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2011,1407.478618668,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2012,1290.860757723,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2013,1179.679239981,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2014,1088.53940001,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2015,924.841700975,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2016,996.17698026,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2017,1087.045352178,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2018,827.036735016,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2019,1362.252282771,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2020,1058.392671811,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Iraq,2021,974.511820665,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2010,203.762200056,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2011,206.947246727,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2012,210.098376719,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2013,220.289270678,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2014,229.921671726,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2015,228.387716627,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2016,234.418549311,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2017,275.948109667,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2018,316.081867293,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2019,313.662998448,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2020,311.516969163,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ireland,2021,317.054398192,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2010,261.856369257,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2011,262.743424745,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2012,263.563232652,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2013,264.279232105,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2014,264.883111902,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2015,265.24211835,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2016,276.136476869,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2017,277.642152602,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2018,268.551358762,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2019,269.286920567,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2020,274.051157815,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Israel,2021,294.380070964,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2010,566.682034793,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2011,566.647213884,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2012,566.982671844,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2013,567.045701347,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2014,566.850429716,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2015,567.596721965,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2016,567.245166249,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2017,566.895237973,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2018,566.657634325,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2019,567.741069622,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2020,569.574289353,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Italy,2021,572.076498765,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2010,454.633473593,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2011,480.738977168,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2012,506.359775833,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2013,531.792844375,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2014,557.362554645,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2015,295.228569537,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2016,483.106438624,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2017,408.529544673,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2018,334.517899201,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2019,260.829038323,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2020,186.927933908,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jamaica,2021,163.676573428,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2010,633.852908235,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2011,632.386021677,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2012,631.190239894,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2013,630.096162151,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2014,629.134406368,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2015,628.286159599,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2016,627.589411667,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2017,626.073364493,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2018,626.505543909,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2019,623.252681495,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2020,625.175850669,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Japan,2021,628.347727151,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2010,128.836641198,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2011,126.456051916,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2012,117.722702165,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2013,117.091849134,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2014,118.075413495,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2015,106.085306827,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2016,104.780335618,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2017,103.138590719,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2018,102.907637909,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2019,103.270654902,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2020,101.096917013,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Jordan,2021,99.10588882,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2010,1432.116516418,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2011,1301.162644323,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2012,1250.901603381,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2013,1298.936245527,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2014,1311.824072102,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2015,1214.684376333,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2016,1331.909694321,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2017,1335.039493167,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2018,1269.925249617,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2019,1260.300460834,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2020,1294.256045934,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kazakhstan,2021,1279.610594971,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2010,77.50874653,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2011,75.487020754,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2012,73.613279993,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2013,71.86938632,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2014,70.24807174,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2015,68.727806468,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2016,84.184732873,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2017,82.372900117,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2018,80.715381709,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2019,79.134156143,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2020,77.559671126,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kenya,2021,76.067414293,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2010,368.263563507,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2011,349.569271631,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2012,328.173506925,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2013,309.635742287,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2014,304.166051814,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2015,296.565929251,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2016,295.003686928,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2017,303.037355536,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2018,289.540522354,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2019,281.461800004,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2020,286.668054905,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kuwait,2021,294.109757997,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2010,1409.503746872,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2011,1379.599505505,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2012,1360.097302,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2013,1339.263859458,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2014,1317.414970409,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2015,1295.017058384,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2016,1272.784884898,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2017,1251.37614619,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2018,1230.819857784,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2019,1211.327078394,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2020,1192.241279751,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Kyrgyzstan,2021,1173.453060269,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2010,910.583485071,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2011,967.999293053,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2012,1023.844169197,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2013,1078.212116153,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2014,1131.293736757,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2015,1156.551555164,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2016,1111.536280994,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2017,1046.025553032,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2018,1030.259509985,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2019,1019.127285948,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2020,1004.180807741,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Laos,2021,989.891390733,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2010,115.820378486,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2011,121.234064557,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2012,126.702103002,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2013,121.979673992,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2014,83.638358083,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2015,88.606419322,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2016,94.17792109,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2017,89.986022031,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2018,94.723165068,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2019,93.203169228,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2020,95.522421104,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Latvia,2021,96.701618373,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2010,315.264822451,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2011,322.69215644,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2012,324.621591835,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2013,305.343457682,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2014,284.810741907,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2015,287.547625075,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2016,293.994569729,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2017,301.182534294,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2018,309.200097667,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2019,318.234105114,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2020,324.920540152,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lebanon,2021,329.004363063,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2010,21.6537214,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2011,21.495065214,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2012,21.316793837,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2013,21.119232533,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2014,20.904506496,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2015,20.674800958,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2016,20.430324198,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2017,20.178594381,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2018,19.92705243,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2019,19.679184365,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2020,19.431258595,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lesotho,2021,19.1982832,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2010,36.293929585,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2011,34.894706002,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2012,33.68161524,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2013,32.954525691,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2014,32.283060709,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2015,31.632609035,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2016,31.002335906,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2017,30.417182393,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2018,29.840117102,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2019,29.266106739,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2020,28.67765918,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Liberia,2021,28.0932627,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2010,855.736112178,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2011,919.940667994,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2012,993.20768603,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2013,974.065953454,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2014,956.088166088,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2015,941.501735641,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2016,928.019437789,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2017,914.04224443,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2018,899.997885082,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2019,887.490013835,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2020,876.172350165,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Libya,2021,865.591719539,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2010,346.83484039,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2011,288.610617655,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2012,228.687592052,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2013,167.248985602,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2014,119.401908628,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2015,132.779758179,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2016,104.953755923,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2017,89.173509615,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2018,88.448775576,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2019,89.28837805,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2020,90.200679581,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Lithuania,2021,91.288790738,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2010,93.675429428,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2011,93.592123596,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2012,83.869691001,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2013,79.36420251,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2014,82.004211708,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2015,78.678206137,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2016,76.111980609,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2017,76.473754912,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2018,85.867550126,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2019,79.519591982,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2020,75.349104297,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Luxembourg,2021,74.297575084,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2010,623.849198656,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2011,606.622702417,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2012,590.296887954,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2013,574.735375798,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2014,559.832897092,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2015,545.529274741,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2016,531.60267291,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2017,518.041164037,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2018,504.97753137,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2019,492.384920656,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2020,480.312311239,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Madagascar,2021,468.842948143,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2010,92.183795246,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2011,89.58085167,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2012,87.079015671,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2013,84.668895507,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2014,82.340259714,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2015,80.099453673,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2016,77.951816034,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2017,75.878716417,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2018,73.868066342,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2019,71.912639288,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2020,70.020938676,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malawi,2021,68.216068363,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2010,191.101448788,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2011,188.047388627,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2012,185.02902137,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2013,182.114987496,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2014,179.30855706,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2015,176.640043094,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2016,174.07623029,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2017,171.629762828,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2018,169.386527246,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2019,167.29656914,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2020,165.301239672,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malaysia,2021,163.46043355,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2010,16.317499827,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2011,15.756863583,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2012,15.224274202,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2013,14.723203769,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2014,14.157576223,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2015,13.545095986,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2016,12.988385302,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2017,12.488305443,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2018,12.046765954,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2019,11.69456183,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2020,11.468826175,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Maldives,2021,11.314451623,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2010,333.951932172,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2011,323.322070054,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2012,314.023511315,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2013,304.986469974,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2014,295.468035384,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2015,286.315167411,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2016,277.324631208,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2017,268.546665938,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2018,260.154633988,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2019,252.146306703,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2020,244.345562862,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mali,2021,236.749784284,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2010,93.584288878,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2011,93.359659761,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2012,92.810770702,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2013,103.536940746,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2014,143.132015205,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2015,135.354451256,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2016,134.272671876,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2017,137.644239693,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2018,129.639759879,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2019,124.807932133,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2020,122.528251429,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Malta,2021,116.673760888,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2010,394.857552111,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2011,383.117083952,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2012,371.330593961,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2013,360.730641185,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2014,351.324191931,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2015,342.150209568,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2016,333.227210018,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2017,324.566137382,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2018,316.153372084,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2019,307.994185019,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2020,300.137553783,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritania,2021,292.569362254,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2010,504.157153655,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2011,443.930973787,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2012,451.602140066,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2013,471.065499023,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2014,479.834194068,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2015,473.261864605,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2016,483.804527514,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2017,475.770829842,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2018,460.096295993,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2019,461.320441047,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2020,468.475021343,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mauritius,2021,465.773356994,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2010,714.905212055,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2011,703.45739498,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2012,714.719453328,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2013,696.108129166,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2014,715.181387176,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2015,712.984381501,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2016,712.455192582,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2017,715.080841664,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2018,716.307026357,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2019,714.320484841,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2020,710.707990335,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mexico,2021,709.868608485,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2010,150.70227259,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2011,147.297098247,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2012,144.09221902,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2013,141.143260409,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2014,138.465798948,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2015,136.017410229,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2016,134.876318416,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2017,134.97462477,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2018,135.029301358,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2019,135.011070908,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2020,135.420616435,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Monaco,2021,136.291773429,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2010,196.3969431,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2011,186.058625717,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2012,175.586934155,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2013,165.216656773,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2014,154.964093,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2015,144.902654491,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2016,152.629676636,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2017,149.352557953,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2018,146.144537074,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2019,143.050274871,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2020,140.362167175,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mongolia,2021,138.121299416,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2010,254.974296563,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2011,254.674036227,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2012,254.165936078,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2013,253.807106599,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2014,253.667857492,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2015,253.799099636,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2016,254.080446701,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2017,254.412290217,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2018,254.80833947,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2019,255.236391094,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2020,255.783342448,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Montenegro,2021,256.267728901,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2010,321.301197464,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2011,317.01602911,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2012,312.753272508,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2013,308.577267692,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2014,304.567167309,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2015,300.774574546,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2016,297.117998144,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2017,293.598464202,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2018,290.334612938,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2019,287.320481854,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2020,284.310415186,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Morocco,2021,281.336597784,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2010,55.543392678,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2011,55.549280281,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2012,55.462973268,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2013,55.300650195,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2014,55.09946161,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2015,54.874138545,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2016,53.1836287,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2017,51.558586673,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2018,50.06138212,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2019,48.636984018,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2020,47.244489979,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Mozambique,2021,45.920650114,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2010,676.062604781,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2011,670.583804379,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2012,664.926460405,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2013,659.279335822,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2014,653.804725508,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2015,648.578841534,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2016,643.474435894,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2017,638.601251472,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2018,634.021781105,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2019,629.548765755,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2020,625.035588472,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Myanmar,2021,620.680097083,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2010,137.190481839,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2011,135.062888657,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2012,132.873811402,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2013,130.641276293,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2014,128.399407758,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2015,126.166160834,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2016,123.958831895,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2017,121.799897993,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2018,119.716670546,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2019,117.712262184,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2020,115.704564465,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Namibia,2021,113.827198456,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2010,349.652138995,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2011,348.307820186,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2012,347.488431871,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2013,346.842975134,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2014,345.825626046,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2015,343.969149222,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2016,340.872064814,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2017,336.974646021,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2018,333.153118466,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2019,329.388756353,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2020,323.596057833,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nepal,2021,316.201214524,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2010,657.213883732,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2011,650.385786355,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2012,638.844741461,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2013,584.436727235,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2014,526.05033561,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2015,493.559485308,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2016,468.533251034,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2017,460.051659776,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2018,468.019226148,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2019,483.975879647,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2020,476.410154844,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Netherlands,2021,462.195206682,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2010,1196.639561856,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2011,1173.291839153,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2012,1151.856507578,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2013,1127.819139994,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2014,1098.541080156,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2015,1067.081968585,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2016,1036.409388997,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2017,1022.251290703,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2018,1008.337367826,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2019,986.005324424,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2020,966.114490174,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,New Zealand,2021,953.195740826,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2010,258.443495493,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2011,252.166795223,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2012,243.844065328,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2013,235.733218859,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2014,227.835063532,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2015,220.139032961,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2016,212.635856178,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2017,205.321667475,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2018,198.198514596,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2019,191.178650897,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2020,188.667822694,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nicaragua,2021,186.061244807,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2010,70.55981889,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2011,70.175853912,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2012,69.680199779,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2013,74.050747721,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2014,78.024928126,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2015,85.527096316,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2016,83.511206499,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2017,72.743337657,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2018,107.698310382,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2019,110.193426353,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2020,106.162000677,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Niger,2021,102.298191854,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2010,77.507169134,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2011,75.394159609,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2012,73.349590699,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2013,71.397452114,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2014,69.545481284,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2015,67.80046619,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2016,66.121815487,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2017,64.471647971,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2018,62.881947025,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2019,61.361162645,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2020,59.881703994,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Nigeria,2021,58.457931866,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2010,354.470376745,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2011,315.054272593,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2012,812.678199057,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2013,235.323218605,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2014,252.326004655,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2015,210.696081492,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2016,494.65736832,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2017,263.266873318,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2018,1051.998801982,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2019,756.40817037,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2020,332.572560844,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Macedonia,2021,741.566943846,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2010,573.793172276,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2011,558.951429083,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2012,544.305542716,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2013,542.035023741,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2014,540.860577319,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2015,522.815776028,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2016,505.72987383,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2017,509.948853525,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2018,506.191579574,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2019,502.38652546,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2020,499.040018856,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Norway,2021,489.342906496,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2010,592.210593377,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2011,549.383043279,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2012,513.890369866,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2013,490.478635882,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2014,464.50718631,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2015,446.588749017,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2016,425.641247183,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2017,412.166485316,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2018,407.071525705,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2019,416.053991859,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2020,421.490606482,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Oman,2021,423.62842279,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2010,943.408364871,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2011,923.703277444,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2012,907.243732169,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2013,893.406925714,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2014,880.905478444,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2015,869.557806463,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2016,859.150626222,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2017,847.815382643,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2018,834.882652385,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2019,821.565252658,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2020,807.449962497,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Pakistan,2021,792.7758068,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2010,82.935106223,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2011,79.236860234,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2012,83.457591618,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2013,85.40812566,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2014,78.233524903,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2015,81.45628587,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2016,79.149331889,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2017,79.813705621,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2018,81.052167422,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2019,85.115916717,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2020,89.333368663,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Palestine,2021,85.401621384,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2010,286.178147415,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2011,297.198035572,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2012,307.743222876,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2013,317.880988791,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2014,308.861901366,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2015,316.216501028,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2016,300.86907799,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2017,295.747404276,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2018,290.83453474,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2019,286.211657703,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2020,282.088563793,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Panama,2021,278.401670134,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2010,51.705933154,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2011,50.226493175,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2012,48.850408239,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2013,47.552478423,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2014,46.324776974,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2015,45.161499873,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2016,44.06029372,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2017,43.017967709,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2018,42.029205635,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2019,41.089921431,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2020,40.216869546,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Papua New Guinea,2021,39.409265067,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2010,369.473300575,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2011,390.846539181,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2012,407.372754681,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2013,401.788182199,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2014,396.176413269,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2015,390.582636635,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2016,385.056366156,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2017,379.676886001,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2018,374.495912671,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2019,369.523796689,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2020,364.573378891,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Paraguay,2021,359.945159454,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2010,629.32156516,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2011,704.284432301,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2012,777.375445422,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2013,848.652155283,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2014,917.784969739,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2015,984.124603578,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2016,1046.793798909,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2017,1106.004191804,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2018,1158.926372497,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2019,1174.414721817,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2020,1157.492341334,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Peru,2021,1143.392005409,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2010,879.922905173,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2011,872.543294559,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2012,859.390072358,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2013,847.010124071,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2014,823.585832314,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2015,838.589297541,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2016,836.085879181,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2017,859.964109858,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2018,848.842210945,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2019,779.071277466,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2020,779.717509546,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Philippines,2021,781.525352913,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2010,281.521896074,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2011,279.473414967,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2012,297.210103259,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2013,277.576657483,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2014,277.047210151,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2015,272.429129389,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2016,274.62807451,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2017,261.62118664,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2018,260.400327018,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2019,256.120491299,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2020,239.721878885,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Poland,2021,256.188529698,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2010,759.188782438,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2011,736.68107439,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2012,710.825731103,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2013,688.620970317,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2014,666.081786618,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2015,642.477212917,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2016,619.648790089,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2017,597.943445229,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2018,583.099729004,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2019,596.00931902,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2020,595.530749475,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Portugal,2021,595.998893306,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2010,1116.941130018,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2011,1077.322818691,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2012,1039.210626169,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2013,1002.977025287,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2014,969.137727141,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2015,936.284342221,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2016,953.902713284,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2017,972.698496439,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2018,986.512391734,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2019,994.416146075,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2020,1000.897430098,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Puerto Rico,2021,1005.673169887,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2010,373.948645582,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2011,382.765824304,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2012,392.193518256,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2013,384.819265626,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2014,378.96286462,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2015,336.539835408,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2016,351.653805575,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2017,314.556440386,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2018,270.816645776,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2019,314.510213074,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2020,320.072906497,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Qatar,2021,347.5135971,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2010,564.252662001,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2011,561.007425454,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2012,556.601149882,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2013,552.279447288,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2014,548.082923226,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2015,528.724712346,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2016,527.811507406,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2017,525.745259241,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2018,524.063943464,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2019,522.779889494,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2020,522.367864481,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Korea,2021,522.51451612,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2010,254.956594848,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2011,253.630424451,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2012,252.592142512,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2013,251.408430321,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2014,250.72371385,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2015,256.301664618,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2016,261.38537972,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2017,264.108918518,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2018,266.404654347,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2019,270.140675757,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2020,259.332148401,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Moldova,2021,260.656030072,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2010,305.873393691,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2011,326.404894887,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2012,321.89313287,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2013,319.835810308,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2014,314.165409238,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2015,324.775160392,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2016,321.95463945,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2017,343.827125366,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2018,327.233692544,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2019,358.170683568,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2020,380.412794173,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Romania,2021,406.859072792,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2010,434.926484404,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2011,431.533943973,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2012,427.721271458,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2013,423.738038309,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2014,490.764567672,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2015,431.746011909,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2016,446.491464353,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2017,442.824867626,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2018,445.032471957,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2019,444.757673144,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2020,445.139328163,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Russia,2021,446.717913798,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2010,36.487790113,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2011,37.915112238,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2012,39.28821459,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2013,40.604896966,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2014,41.838679469,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2015,42.988451815,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2016,44.035624345,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2017,44.991098855,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2018,45.893473271,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2019,47.526191606,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2020,45.678036251,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Rwanda,2021,45.313109127,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2012,326.859010623,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2013,326.585299475,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2014,326.43495365,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2015,326.428123038,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2016,326.441784548,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2017,326.462278958,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2018,326.62632692,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2019,326.961770624,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2020,327.442172873,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Kitts and Nevis,2021,327.689787002,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2010,250.972591921,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2011,249.208516077,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2012,247.799265266,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2013,246.582901286,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2014,245.417724995,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2015,244.273244393,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2016,243.17935753,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2017,242.14988457,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2018,241.162978953,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2019,240.224433457,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2020,239.347902498,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Lucia,2021,238.79633289,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2010,80.064283188,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2011,79.744298174,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2012,79.43175358,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2013,79.1251745,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2014,79.523346304,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2015,79.844480757,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2016,80.23555392,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2017,80.550265753,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2018,80.755311975,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2019,81.030078914,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2020,81.256212249,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saint Vincent and the Grenadines,2021,81.489859295,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2010,176.001283308,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2011,180.228520041,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2012,184.307132464,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2013,188.268092867,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2014,192.165824863,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2015,196.02875319,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2016,199.87098792,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2017,196.60058836,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2018,193.523355288,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2019,190.588026971,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2020,187.064640209,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sao Tome and Principe,2021,183.320110978,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2010,741.535857781,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2011,707.938009903,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2012,677.448238072,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2013,707.091286085,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2014,728.827671321,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2015,758.232526759,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2016,716.23792841,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2017,682.885873949,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2018,742.244025403,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2019,725.479034711,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2020,722.058025385,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Saudi Arabia,2021,722.996208442,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2010,188.136065023,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2011,184.407870887,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2012,180.735320193,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2013,177.15375229,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2014,173.621905029,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2015,170.142564112,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2016,166.7401562,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2017,163.393797567,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2018,194.395868637,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2019,188.809406491,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2020,183.808463555,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Senegal,2021,179.009781758,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2010,527.889516788,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2011,518.922610986,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2012,509.659019805,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2013,548.457473268,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2014,521.728641191,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2015,623.512533287,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2016,628.095436876,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2017,720.359871827,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2018,747.596995245,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2019,759.16193581,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2020,723.633647979,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Serbia,2021,692.224188541,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2010,148.253957948,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2011,146.013407655,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2012,143.742983349,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2013,141.654775937,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2014,139.794491893,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2015,138.04917372,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2016,136.307557607,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2017,134.56306293,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2018,132.879409511,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2019,131.260000192,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2020,129.820904008,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Seychelles,2021,128.673535517,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2010,32.967213935,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2011,32.09129535,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2012,31.258345809,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2013,30.467235589,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2014,29.717024466,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2015,29.009786086,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2016,28.316314854,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2017,27.638971471,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2018,26.993056221,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2019,26.370639462,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2020,25.771286512,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sierra Leone,2021,25.199981807,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2010,289.075526911,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2011,251.268237782,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2012,215.833380567,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2013,181.773823008,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2014,149.023104201,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2015,117.610244782,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2016,116.3529054,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2017,114.390057606,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2018,112.923866509,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2019,113.118681714,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2020,111.677602329,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Singapore,2021,111.09128674,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2010,107.608297643,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2011,106.206549342,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2012,122.992270879,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2013,93.134682946,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2014,103.20008842,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2015,101.893926825,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2016,98.504880042,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2017,102.271989811,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2018,102.171113206,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2019,102.421669242,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2020,101.71017877,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovakia,2021,103.948677056,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2010,456.507364634,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2011,455.122112841,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2012,448.497453795,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2013,557.621355991,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2014,472.452633045,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2015,431.071354083,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2016,424.541391948,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2017,443.863682286,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2018,456.331757461,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2019,446.779096607,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2020,474.1124676,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Slovenia,2021,439.273193955,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2010,274.224349609,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2011,269.955308399,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2012,265.105592892,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2013,256.604073065,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2014,247.797863664,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2015,239.61221473,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2016,230.744791433,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2017,221.875064963,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2018,214.001679569,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2019,206.366190485,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2020,199.431384719,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Somalia,2021,193.254481052,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2010,287.247264953,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2011,287.613049237,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2012,287.735117366,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2013,287.710407261,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2014,312.080031499,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2015,333.950742516,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2016,337.632616509,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2017,342.153713562,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2018,346.182880306,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2019,325.373699872,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2020,326.329298358,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Africa,2021,330.076707813,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2012,61.486109933,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2013,59.247088361,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2014,58.680400853,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2015,58.779920029,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2016,59.460849143,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2017,61.736352748,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2018,63.297659939,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2019,62.980573843,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2020,62.039026696,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,South Sudan,2021,61.219142947,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2010,756.321740952,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2011,749.787627582,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2012,783.662754292,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2013,693.392737222,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2014,707.012104776,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2015,678.722574937,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2016,671.804884158,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2017,646.013441905,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2018,628.504295057,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2019,619.852526254,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2020,612.704126592,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Spain,2021,611.115457336,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2010,626.362062915,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2011,620.62126077,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2012,615.973233665,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2013,612.632475976,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2014,609.525940329,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2015,606.748082892,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2016,604.233442645,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2017,601.948787112,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2018,599.887584792,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2019,597.976947818,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2020,596.175588401,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sri Lanka,2021,594.577586519,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2012,766.073928992,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2013,748.387694778,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2014,727.909133375,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2015,705.637117094,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2016,684.025812013,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2017,662.121776916,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2018,641.323892519,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2019,623.032523547,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2020,606.091481538,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sudan,2021,589.939786498,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2010,1127.85672429,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2011,1115.465836934,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2012,1103.543918683,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2013,1092.123905261,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2014,1081.129472232,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2015,1070.246318259,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2016,1059.242965467,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2017,1048.235155959,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2018,1037.366413178,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2019,1025.985297376,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2020,1014.553630995,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Suriname,2021,1004.755418159,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2010,286.62094162,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2011,277.394356289,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2012,268.250678868,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2013,259.158215645,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2014,250.094690869,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2015,241.132688059,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2016,232.44512357,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2017,223.917026821,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2018,215.581160875,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2019,207.383733534,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2020,239.560943812,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Sweden,2021,197.571494752,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2010,269.409717051,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2011,259.90705073,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2012,250.733578314,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2013,212.626355852,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2014,208.090313981,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2015,209.593838584,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2016,207.192300682,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2017,205.142476289,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2018,207.623900778,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2019,201.828725914,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2020,201.629590306,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Switzerland,2021,197.52845512,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2010,750.323569317,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2011,737.345337698,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2012,741.427657432,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2013,779.705041273,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2014,835.004298476,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2015,872.702143141,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2016,883.789141802,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2017,882.898945303,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2018,866.911427094,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2019,833.923310043,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2020,806.851527217,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Syria,2021,785.974092455,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2010,1338.765894128,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2011,1269.268074469,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2012,1201.333302834,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2013,1135.05638234,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2014,1070.427942185,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2015,1045.628123584,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2016,1002.714170418,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2017,894.961360816,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2018,1070.755769088,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2019,1135.482124189,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2020,1037.387117349,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tajikistan,2021,1015.37795034,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2010,839.396360556,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2011,833.992525939,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2012,828.636015752,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2013,823.615283331,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2014,819.114173461,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2015,815.228559397,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2016,811.61881924,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2017,808.285660051,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2018,805.676520132,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2019,803.643216237,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2020,801.755405868,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Thailand,2021,800.350799065,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2010,1076.724918832,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2011,1053.032590101,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2012,1030.170276951,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2013,1008.992256071,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2014,989.171442317,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2015,971.958338482,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2016,957.076897699,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2017,942.701902697,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2018,928.798703486,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2019,915.311791746,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2020,901.541929007,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,East Timor,2021,887.245617143,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2010,33.932580679,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2011,33.043538047,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2012,32.194564893,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2013,31.380919472,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2014,30.59663577,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2015,29.839845668,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2016,29.107126495,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2017,28.397532344,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2018,27.71329638,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2019,27.052948808,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2020,26.41372661,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Togo,2021,25.79576762,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2010,267.201589832,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2011,269.85535415,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2012,267.901399421,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2013,265.976460528,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2014,264.155443622,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2015,262.433937803,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2016,260.799139744,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2017,259.162847193,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2018,254.667181495,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2019,252.112727022,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2020,252.412974501,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Trinidad and Tobago,2021,251.169491559,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2010,299.172203043,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2011,299.568693594,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2012,304.027524383,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2013,308.809937874,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2014,313.411173102,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2015,317.905369189,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2016,322.326487654,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2017,306.143796317,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2018,322.189456988,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2019,318.706940495,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2020,294.974651207,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Tunisia,2021,292.539818735,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2010,5321.945645097,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2011,5232.322435293,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2012,5141.009007913,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2013,5049.693395527,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2014,4960.208849536,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2015,4873.735302362,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2016,4791.242691351,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2017,4834.843876474,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2018,4431.938580718,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2019,4499.222203098,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2020,4198.857744049,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkmenistan,2021,2740.501856365,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2010,607.852862774,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2011,636.005781768,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2012,641.294398977,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2013,661.439910828,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2014,656.274990935,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2015,699.261425953,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2016,716.137175748,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2017,700.436082652,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2018,717.129563123,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2019,744.446788765,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2020,737.810473847,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Turkey,2021,688.879052703,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2010,19.695917299,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2011,19.131577741,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2012,18.585899021,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2013,18.058846893,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2014,17.530563381,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2015,16.996930093,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2016,16.439431315,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2017,15.874564524,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2018,15.34370563,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2019,14.831516764,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2020,14.345357062,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uganda,2021,13.891985083,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2010,325.066074879,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2011,307.506344893,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2012,289.541791031,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2013,271.425455865,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2014,253.565628213,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2015,214.572028397,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2016,219.969103954,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2017,250.843888598,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2018,252.030769083,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2019,250.344404506,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2020,224.779664687,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Ukraine,2021,226.709800567,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2010,526.37309633,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2011,531.519803476,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2012,536.782819314,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2013,542.116618563,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2014,547.517399604,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2015,553.011997475,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2016,558.630244635,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2017,551.566846517,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2018,556.718061121,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2019,546.389189263,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2020,536.358063693,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Arab Emirates,2021,523.290394329,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2010,127.969965092,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2011,121.38476217,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2012,128.728473144,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2013,117.477918402,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2014,109.754754043,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2015,125.09895842,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2016,128.245738575,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2017,127.450616519,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2018,126.744251911,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2019,126.088186347,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2020,125.560185575,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Kingdom,2021,125.146699949,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2010,114.917744144,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2011,111.685551054,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2012,108.483345285,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2013,105.251097873,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2014,102.01802035,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2015,98.662380588,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2016,95.290961134,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2017,92.132103218,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2018,89.240152636,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2019,86.583876736,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2020,84.013297049,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United Republic of Tanzania,2021,81.524387791,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2010,1560.465198523,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2011,1520.756844677,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2012,1481.345470212,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2013,1442.848565126,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2014,1405.286555427,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2015,1368.697957501,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2016,1357.81220364,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2017,1347.185607855,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2018,1337.658669557,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2019,1328.937656199,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2020,1322.519946992,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,United States of America,2021,1318.377247669,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2010,1091.673425,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2011,1088.755270126,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2012,1085.688402089,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2013,1082.462335634,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2014,1079.116963896,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2015,1075.579122951,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2016,1072.129724182,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2017,1069.487464204,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2018,1067.976406475,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2019,1067.550575209,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2020,1067.339810083,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uruguay,2021,1068.220158423,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2010,1875.426824876,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2011,1830.7405509,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2012,1787.253950259,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2013,1744.212129302,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2014,1701.17841297,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2015,1781.487515581,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2016,1734.620046676,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2017,1843.754658298,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2018,1739.252309491,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2019,1636.779728676,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2020,1527.62029115,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Uzbekistan,2021,1281.107502207,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2010,787.960392299,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2011,777.638725441,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2012,767.762909162,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2013,758.304312474,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2014,749.382527715,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2015,741.123828338,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2016,736.018948219,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2017,740.306234578,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2018,758.618763519,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2019,780.979827786,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2020,794.171296609,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Venezuela,2021,802.354847986,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2010,938.440113243,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2011,928.47560661,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2012,918.575385991,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2013,908.741050886,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2014,899.101735658,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2015,889.779326266,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2016,880.844597999,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2017,872.352877469,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2018,864.253058521,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2019,856.471211646,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2020,848.74408793,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Vietnam,2021,841.609303498,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2010,144.075645817,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2011,139.937767928,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2012,135.947330381,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2013,132.115317809,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2014,128.45317444,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2015,125.015144717,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2016,121.780411165,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2017,118.697270652,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2018,115.782416486,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2019,113.007097955,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2020,110.42605998,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Yemen,2021,108.090437344,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2010,113.978407617,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2011,110.193501752,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2012,106.614883845,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2013,103.183621687,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2014,99.886940945,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2015,96.748999737,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2016,93.75133627,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2017,90.877274403,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2018,88.136882185,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2019,85.525527983,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2020,83.052814352,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zambia,2021,80.726642488,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2010,272.951713858,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2011,267.381198139,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2012,260.910376077,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2013,253.719507958,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2014,246.647547773,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2015,239.895098085,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2016,235.367720808,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2017,226.362764379,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2018,250.553783491,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2019,275.895312534,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2020,313.323806327,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Total water withdrawal per capita,Zimbabwe,2021,306.979212024,m3/inhab/year,E,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Albania,2015,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Albania,2016,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Albania,2017,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Albania,2018,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Albania,2019,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Albania,2020,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Albania,2021,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2011,0.4997,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2012,0.6118,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2013,0.8011,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2014,0.6959,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2015,0.7401,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2016,0.6693,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2017,0.5151,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2018,0.49,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2019,0.754,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2020,0.684,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Armenia,2021,0.694,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2010,0.139125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2011,0.15675,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2012,0.174375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2013,0.192,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2014,0.226,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2015,0.182,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2016,0.00016,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2017,0.0001319,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2018,0.000741598,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2019,0.0007586,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2020,0.0007436,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Australia,2021,0.0007436,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Azerbaijan,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Azerbaijan,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Azerbaijan,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Azerbaijan,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Azerbaijan,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Azerbaijan,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Azerbaijan,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2010,0.357,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2011,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2012,0.367,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2013,0.372,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2014,0.299,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2015,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2016,0.282,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2017,0.221,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2018,0.213,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2019,0.184,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2020,0.187,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Belarus,2021,0.217,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2010,0.02068,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2011,0.0244,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2012,0.02812,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2013,0.03184,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2014,0.03556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2015,0.03928,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2016,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2017,0.047,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2018,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2019,0.055,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2020,0.058,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Bulgaria,2021,0.058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2010,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2011,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2012,12.67,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2013,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2014,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2015,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2016,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2017,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2018,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2019,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2020,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Chile,2021,12.67,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Colombia,2016,3.023,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Colombia,2017,3.18197667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Colombia,2018,3.34095334,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Colombia,2019,1.900489243,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Colombia,2020,2.468270262,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Colombia,2021,2.453812875,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2010,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2011,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2012,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2013,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2014,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Croatia,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2011,0.006,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2012,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2013,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2014,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2015,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2016,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2017,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2018,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2019,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2020,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Czech Republic,2021,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Denmark,2015,0.256867,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Denmark,2016,0.282207,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Denmark,2017,0.27578,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Denmark,2018,0.28499,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Denmark,2019,0.265743,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Denmark,2020,0.256049,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Denmark,2021,0.256049,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2010,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2011,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2012,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2013,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2014,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2015,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2016,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2017,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2018,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2019,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2020,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,El Salvador,2021,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2010,0.00010052,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2011,0.00012186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2012,1.162e-05,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2013,0.00282719,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2014,8.59e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2015,6.57e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2016,4.21e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2017,5.44e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2018,6.44e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2019,6.44e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2020,6.44e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Estonia,2021,6.44e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Finland,2014,0.3,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Finland,2015,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Finland,2016,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Finland,2017,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Finland,2018,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Finland,2019,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Finland,2020,0.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Finland,2021,0.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Georgia,2016,0.01296,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Georgia,2017,0.01298,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Georgia,2018,0.01759,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Georgia,2019,0.01646,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Georgia,2020,0.01162,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Georgia,2021,0.01922,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2010,0.001893,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2011,0.001607333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2012,0.001321667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2013,0.001036,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2014,0.012540333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2015,0.024044667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2016,0.035549,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2017,0.045989667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2018,0.056430333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2019,0.066871,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2020,0.066871,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Germany,2021,0.066871,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Hungary,2015,0.3332,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Hungary,2016,0.2971,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Hungary,2017,0.342357799,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Hungary,2018,0.358322878,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Hungary,2019,0.35,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Hungary,2020,0.3716,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Hungary,2021,0.3716,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Indonesia,2014,18.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Indonesia,2015,14.95,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Indonesia,2016,11.89,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Indonesia,2017,11.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Indonesia,2018,11.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Indonesia,2019,11.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Indonesia,2020,11.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Indonesia,2021,11.89,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ireland,2018,0.0327,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ireland,2019,0.0328,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ireland,2020,0.0351,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ireland,2021,0.036,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2010,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2011,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2012,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2013,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2014,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2015,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2016,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2017,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2018,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2019,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2020,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Japan,2021,8.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kazakhstan,2018,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kazakhstan,2019,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kazakhstan,2020,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kazakhstan,2021,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2010,0.042,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2011,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2012,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2013,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2014,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2015,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2016,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2017,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2018,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2019,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2020,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kenya,2021,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2010,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2011,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2012,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2013,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2014,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2015,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2016,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2017,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2018,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2019,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2020,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Kyrgyzstan,2021,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2012,0.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2013,0.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2014,0.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2015,0.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2016,0.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2017,0.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2018,0.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2019,0.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2020,0.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Laos,2021,0.44,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2012,0.0383,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2013,0.0334,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2014,0.0343,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2015,0.0462,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2016,0.054874924,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2017,0.05183395,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2018,0.050836,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2019,0.050937,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2020,0.053094,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Latvia,2021,0.053094,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2010,0.067068421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2011,0.063826316,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2012,0.06058421,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2013,0.057342105,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2014,0.0541,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2015,0.0575,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2016,0.0555,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2017,0.0548,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2018,0.05316,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2019,0.05316,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2020,0.05316,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Lithuania,2021,0.05316,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Malta,2014,3e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Malta,2015,1e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Malta,2016,2e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Malta,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Malta,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Malta,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Malta,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Malta,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Mexico,2014,1.114,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Mexico,2015,1.136,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Mexico,2016,1.153,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Mexico,2017,1.159,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Mexico,2018,1.16,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Mexico,2019,1.163,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Mexico,2020,1.169,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Mexico,2021,1.17,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Netherlands,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Netherlands,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Netherlands,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Netherlands,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Netherlands,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Netherlands,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Netherlands,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Niger,2017,0.0004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Niger,2018,0.000407,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Niger,2019,0.000407,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Niger,2020,0.000407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Niger,2021,0.000407,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2010,0.728,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2011,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2012,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2013,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2014,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2015,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2016,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2017,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2018,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2019,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2020,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Nigeria,2021,0.728,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2010,0.753,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2011,0.753,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2012,0.753,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2013,0.753,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2014,0.7534,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2015,0.753,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2016,0.7533,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2017,0.753,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2018,0.753382268,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2019,0.584189105,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2020,0.584293489,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Philippines,2021,0.584293489,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2012,1.022,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2013,0.999,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2014,0.976,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2015,0.907,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2016,0.954,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2017,0.937,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2018,0.873,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2019,0.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2020,0.80162,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Poland,2021,0.841,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Moldova,2017,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Moldova,2018,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Moldova,2019,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Moldova,2020,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Moldova,2021,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2012,0.705,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2013,0.775,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2014,0.852,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2015,0.907,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2016,0.893,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2017,1.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2018,1.029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2019,1.028,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2020,1.149,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Romania,2021,1.202,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Rwanda,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Rwanda,2020,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Rwanda,2021,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Senegal,2017,0.000352,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Senegal,2018,0.000402,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Senegal,2019,0.0004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Senegal,2020,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Senegal,2021,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Serbia,2014,0.5507,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Serbia,2015,0.6043,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Serbia,2016,0.561,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Serbia,2017,0.5573,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Serbia,2018,0.6301,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Serbia,2019,0.6059,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Serbia,2020,0.5638,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Serbia,2021,0.514,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Slovakia,2014,0.0031,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Slovakia,2015,0.0029,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Slovakia,2016,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Slovakia,2017,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Slovakia,2018,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Slovakia,2019,0.0032,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Slovakia,2020,0.0033,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Slovakia,2021,0.0035,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,South Africa,2015,0.042,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,South Africa,2016,0.042,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,South Africa,2017,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,South Africa,2018,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,South Africa,2019,0.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,South Africa,2020,0.044,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,South Africa,2021,0.044,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2010,2.052,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2011,2.076,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2012,2.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2013,2.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2014,1.95,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2015,1.85,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2016,1.72,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2017,1.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2018,1.62,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2019,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2020,1.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Spain,2021,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Sweden,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Sweden,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2010,7.662333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2011,7.582666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2012,7.503,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2013,7.423333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2014,7.343666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2015,7.264,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2016,6.792,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2017,5.128,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2018,7.378,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2019,7.954,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2020,7.954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tajikistan,2021,7.954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tunisia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tunisia,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tunisia,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tunisia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tunisia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Tunisia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2010,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2011,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2012,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2013,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2014,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2015,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2016,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2017,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2018,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2019,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2020,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkmenistan,2021,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkey,2014,7.82,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkey,2015,7.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkey,2016,7.743,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkey,2017,7.839,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkey,2018,7.785,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkey,2019,7.7,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkey,2020,7.914,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Turkey,2021,7.914,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ukraine,2014,1.209,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ukraine,2015,0.454,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ukraine,2016,0.446,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ukraine,2017,0.454,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ukraine,2018,0.438,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ukraine,2019,0.445,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ukraine,2020,0.362,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Ukraine,2021,0.362,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Arab Emirates,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Arab Emirates,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Arab Emirates,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Arab Emirates,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Arab Emirates,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Arab Emirates,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Kingdom,2015,0.841,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Kingdom,2016,0.722,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Kingdom,2017,0.722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Kingdom,2018,0.722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Kingdom,2019,0.722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Kingdom,2020,0.722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United Kingdom,2021,0.722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United States of America,2015,2.763,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United States of America,2016,2.763,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United States of America,2017,2.763,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United States of America,2018,2.763,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United States of America,2019,2.763,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United States of America,2020,2.763,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,United States of America,2021,2.763,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Uzbekistan,2014,0.5618,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Uzbekistan,2015,0.803,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Uzbekistan,2016,0.5764,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Uzbekistan,2017,0.66,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Uzbekistan,2018,0.655,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Uzbekistan,2019,0.65,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Uzbekistan,2020,0.747,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Uzbekistan,2021,0.747,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Zimbabwe,2015,0.0159,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Zimbabwe,2016,0.0159,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Zimbabwe,2017,0.0159,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Zimbabwe,2018,0.015898856,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Zimbabwe,2019,0.015898856,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Zimbabwe,2020,0.015898856,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for aquaculture,Zimbabwe,2021,0.015898856,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Albania,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Albania,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Albania,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Albania,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Albania,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2010,0.0275,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2011,0.026,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2012,0.0245,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2013,0.023,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2014,0.0215,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2015,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2016,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2017,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2018,0.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2019,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2020,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Armenia,2021,0.017,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2010,0.976727273,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2011,0.946090909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2012,0.915454546,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2013,0.884818182,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2014,0.854181818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2015,0.823545455,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2016,0.792909091,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2017,0.762272727,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2018,0.731636364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2019,0.701,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2020,0.701,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Austria,2021,0.701,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Azerbaijan,2015,0.571,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Azerbaijan,2016,0.626,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Azerbaijan,2017,0.553,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Azerbaijan,2018,0.499,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Azerbaijan,2019,0.556,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Azerbaijan,2020,0.553,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Azerbaijan,2021,0.595,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2010,3.7555,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2011,3.423,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2012,3.0905,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2013,2.758,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2014,2.4255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2015,2.093,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2016,2.2615,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2017,2.43,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2018,2.335,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2019,2.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2020,2.605,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Belgium,2021,2.605,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Brazil,2014,7.048,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Brazil,2015,6.821,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Brazil,2016,5.625,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Brazil,2017,2.507,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Brazil,2018,2.24,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Brazil,2019,2.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Brazil,2020,2.78,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Brazil,2021,2.92,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2010,3.979857143,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2011,3.928714286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2012,3.877571429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2013,3.826428571,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2014,3.775285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2015,3.724142857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2016,3.673,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2017,3.697,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2018,3.609,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2019,3.542,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2020,3.287,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Bulgaria,2021,3.287,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2010,25.686666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2011,25.213333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2012,24.74,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2013,24.266666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2014,23.793333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2015,23.32,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2016,23.303,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2017,23.286,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2018,22.497666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2019,21.709333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2020,20.921,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Canada,2021,20.921,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2010,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2011,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2012,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2013,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2014,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2015,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2016,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2017,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2018,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2019,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2020,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Chile,2021,0.117,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2010,1.02,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2011,1.1975,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2012,1.375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2013,1.5525,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2014,1.73,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2015,1.9075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2016,2.085,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2017,2.085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2018,2.085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2019,2.085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2020,2.085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Colombia,2021,2.085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2010,0.33559,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2011,0.35006,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2012,0.3939,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2013,0.3536,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2014,0.38966,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2015,0.36901,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2016,0.37928,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2017,0.37852,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2018,0.37448,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2019,0.39688,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2020,0.417,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Croatia,2021,0.407,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2010,0.6643,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2011,0.6459,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2012,0.6275,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2013,0.5884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2014,0.5493,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2015,0.4929,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2016,0.5537,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2017,0.5196,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2018,0.46,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2019,0.399,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2020,0.323,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Czech Republic,2021,0.302,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2010,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2011,0.0021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2012,0.0022,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2013,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2014,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2015,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2016,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2017,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2018,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2019,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2020,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Denmark,2021,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2010,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2011,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2012,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2013,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2014,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2015,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2016,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2017,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2018,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2019,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2020,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,El Salvador,2021,0.185,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2010,1.479444444,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2011,1.528,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2012,1.307,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2013,1.388,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2014,1.469,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2015,1.35831611,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2016,1.47863,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2017,1.4495,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2018,1.30084,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2019,0.6693,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2020,0.540133677,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Estonia,2021,0.674818739,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2010,0.387,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2011,0.4296,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2012,0.4722,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2013,0.5148,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2014,0.5574,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2015,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2016,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2017,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2018,0.5,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2019,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2020,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Finland,2021,0.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2010,17.15,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2011,17.965,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2012,18.78,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2013,18.196666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2014,17.613333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2015,17.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2016,15.708,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2017,16.099,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2018,16.04530126,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2019,15.28916688,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2020,13.5876856,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,France,2021,13.5876856,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2010,0.15186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2011,0.15654,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2012,0.16122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2013,0.1659,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2014,0.17058,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2015,0.17526,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2016,0.17994,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2017,0.18,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2018,0.18555,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2019,0.29858,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2020,0.31692,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Georgia,2021,0.30706,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2010,19.061173,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2011,17.174227,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2012,15.046476,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2013,13.258318,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2014,13.684634,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2015,12.707522,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2016,12.398328,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2017,10.347867,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2018,9.451331,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2019,8.543864,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2020,8.543864,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Germany,2021,8.543864,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2010,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2011,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2012,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2013,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2014,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2015,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2016,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2017,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2018,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2019,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2020,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Greece,2021,0.1004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2010,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2011,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2012,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2013,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2014,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2015,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2016,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2017,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2018,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2019,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2020,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Honduras,2021,0.0954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2010,3.8364,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2011,3.7232,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2012,3.61,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2013,3.293,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2014,2.976,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2015,2.913,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2016,3.087,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2017,3.11,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2018,3.34,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2019,3.03,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2020,3.2499,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Hungary,2021,3.2499,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iceland,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iraq,2017,3.64,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iraq,2018,3.61,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iraq,2019,3.075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iraq,2020,2.141,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Iraq,2021,1.926,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2010,0.331733333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2011,0.335154167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2012,0.338575,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2013,0.341995833,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2014,0.345416667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2015,0.3488375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2016,0.352258333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2017,0.355679167,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2018,0.3591,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2019,0.3591,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2020,0.3591,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ireland,2021,0.359,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2010,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2011,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2012,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2013,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2014,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2015,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2016,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2017,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2018,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2019,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2020,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Israel,2021,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2013,1.6,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2014,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2015,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2016,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2017,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2018,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2019,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2020,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Italy,2021,1.6,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Jamaica,2014,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Jamaica,2015,0.008,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Jamaica,2016,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Jamaica,2017,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Jamaica,2018,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Jamaica,2019,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Jamaica,2020,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Jamaica,2021,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2010,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2011,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2012,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2013,0.0069,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2014,0.005458027,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2015,0.004016054,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2016,0.002574081,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2017,0.001628096,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2018,0.00249,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2019,0.002957,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2020,0.002156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Latvia,2021,0.002156,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2010,0.573,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2011,0.268,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2012,0.2235,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2013,0.179,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2014,0.1345,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2015,0.156,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2016,0.072,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2017,0.0226,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2018,0.01542,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2019,0.01542,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2020,0.01542,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Lithuania,2021,0.01542,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2012,0.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2013,0.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Luxembourg,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2012,0.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2013,0.0,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2014,0.155,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2015,0.31,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2016,0.155,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Malta,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2010,4.09,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2011,4.08,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2012,4.081666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2013,4.083333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2014,4.085,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2015,4.086666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2016,4.088333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2017,4.09,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2018,4.091666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2019,4.093333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2020,4.095,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mexico,2021,3.969,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2010,0.030783333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2011,0.033566667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2012,0.03635,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2013,0.039133333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2014,0.041916667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2015,0.0447,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2016,0.0413,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2017,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2018,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2019,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2020,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Mongolia,2021,0.0413,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2010,6.148,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2011,6.0575,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2012,5.967,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2013,5.426666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2014,4.886333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2015,4.346,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2016,3.589,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2017,3.5825,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2018,3.366,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2019,3.7667,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2020,3.5203,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Netherlands,2021,3.5203,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2010,0.01175,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2011,0.011566667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2012,0.011383333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2013,0.0112,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2014,0.0112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2015,0.0112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2016,0.0112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2017,0.0112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2018,0.0112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2019,0.0112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2020,0.0112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Macedonia,2021,0.0112,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Paraguay,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2010,6.561333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2011,6.574666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2012,6.588,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2013,6.63,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2014,6.672,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2015,6.456,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2016,6.457,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2017,5.98,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2018,5.741,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2019,5.55,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2020,4.951781,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Poland,2021,5.515,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2010,0.7408375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2011,0.863675,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2012,0.9865125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2013,1.10935,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2014,1.2321875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2015,1.355025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2016,1.4778625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2017,1.6007,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2018,1.6007,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2019,1.6007,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2020,1.6007,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Portugal,2021,1.6007,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2010,3.141,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2011,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2012,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2013,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2014,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2015,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2016,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2017,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2018,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2019,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2020,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Puerto Rico,2021,3.141,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2010,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2011,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2012,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2013,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2014,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2015,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2016,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2017,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2018,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2019,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2020,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,South Korea,2021,0.209,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Moldova,2017,0.286,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Moldova,2018,0.269,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Moldova,2019,0.256,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Moldova,2020,0.267,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Moldova,2021,0.267,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2010,2.63625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2011,2.0875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2012,1.53875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2013,0.99,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2014,0.806,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2015,0.74,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2016,0.688,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2017,0.755,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2018,0.7365,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2019,0.718,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2020,0.531,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Romania,2021,0.566,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2010,3.122,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2011,3.026,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2012,2.93,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2013,3.264,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2014,2.534,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2015,3.148,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2016,3.244,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2017,3.835,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2018,4.0298,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2019,4.0803,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2020,3.8257,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Serbia,2021,3.575,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2010,0.675733333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2011,0.625866667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2012,0.576,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2013,0.6818,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2014,0.7663,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2015,0.6839,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2016,0.6785,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2017,0.714,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2018,0.743,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2019,0.727,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2020,0.792,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Slovenia,2021,0.717,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2010,6.3,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2011,6.2,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2012,6.1,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2013,5.985,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2014,5.87,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2015,5.65,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2016,5.59,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2017,5.32,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2018,5.45,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2019,5.35,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2020,5.25,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Spain,2021,5.25,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2010,0.11,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2011,0.1046,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2012,0.0992,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2013,0.0938,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2014,0.0884,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2015,0.083,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2016,0.0826,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2017,0.0822,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2018,0.0818,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2019,0.0814,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2020,0.081,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Sweden,2021,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2012,0.0374,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2013,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2014,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2015,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2016,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2017,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2018,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2019,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2020,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Switzerland,2021,0.0374,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Tajikistan,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Tajikistan,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Tajikistan,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Tajikistan,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2010,0.0978,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2011,0.09535,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2012,0.0929,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2013,0.09045,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2014,0.088,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2015,0.086,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2016,0.084,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2017,0.0835,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2018,0.083,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2019,0.0765,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2020,0.07,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Turkey,2021,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ukraine,2014,0.106,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ukraine,2015,3.972,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ukraine,2016,0.574,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ukraine,2017,0.662,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ukraine,2018,0.662,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ukraine,2019,0.482,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ukraine,2020,0.482,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Ukraine,2021,0.482,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Arab Emirates,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Arab Emirates,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Arab Emirates,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Arab Emirates,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Arab Emirates,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Arab Emirates,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2010,0.175625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2011,0.1694,10^9 m3/year,X,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2012,0.15425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2013,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2014,0.12395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2015,0.1088,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2016,0.1186,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2017,0.1186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2018,0.1186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2019,0.1186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2020,0.1186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United Kingdom,2021,0.1186,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2010,219.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2011,211.96,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2012,204.92,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2013,197.88,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2014,190.84,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2015,183.8,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2016,183.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2017,183.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2018,183.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2019,183.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2020,183.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,United States of America,2021,183.8,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Uzbekistan,2019,0.315,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Uzbekistan,2020,0.294,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Uzbekistan,2021,0.325,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Zimbabwe,2015,0.0481,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Zimbabwe,2016,0.0481,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Zimbabwe,2017,0.0481,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Zimbabwe,2018,0.048125,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Zimbabwe,2019,0.048125,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Zimbabwe,2020,0.048125,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for cooling of thermoelectric plants,Zimbabwe,2021,0.048125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Albania,2015,0.08,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Albania,2016,0.077,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Albania,2017,0.088,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Albania,2018,0.084,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Albania,2019,0.078,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Albania,2020,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Albania,2021,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2010,0.7627,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2011,0.7978,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2012,0.8329,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2013,0.868,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2014,1.91,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2015,2.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2016,1.5516895,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2017,1.101379,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2018,0.961816,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2019,1.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2020,0.91,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Australia,2021,1.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Austria,2016,0.056,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Austria,2017,0.055666667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Austria,2018,0.055333333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Austria,2019,0.055,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Austria,2020,0.055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Austria,2021,0.055,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Azerbaijan,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Azerbaijan,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Azerbaijan,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Azerbaijan,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Azerbaijan,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Azerbaijan,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Azerbaijan,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Belarus,2014,0.216,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Belarus,2015,0.18,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Belarus,2016,0.146,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Belarus,2017,0.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Belarus,2018,0.202,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Belarus,2019,0.183,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Belarus,2020,0.18,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Belarus,2021,0.179,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2010,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2011,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2012,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2013,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2014,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2015,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2016,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2017,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2018,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2019,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2020,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Benin,2021,0.014,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2010,0.048285714,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2011,0.048014286,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2012,0.047742857,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2013,0.047471429,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2014,0.0472,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2015,0.0463,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2016,0.0481,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2017,0.0422,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2018,0.0416,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2019,0.04,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2020,0.0412688,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Botswana,2021,0.0409528,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Brazil,2014,5.096,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Brazil,2015,5.208,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Brazil,2016,5.14,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Brazil,2017,5.26,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Brazil,2018,5.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Brazil,2019,5.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Brazil,2020,5.07,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Brazil,2021,5.13,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Bulgaria,2016,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Bulgaria,2017,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Bulgaria,2018,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Bulgaria,2019,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Bulgaria,2020,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Bulgaria,2021,0.004,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2010,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2011,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2012,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2013,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2014,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2015,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2016,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2017,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2018,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2019,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2020,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Burundi,2021,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2010,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2011,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2012,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2013,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2014,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2015,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2016,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2017,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2018,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2019,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2020,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cambodia,2021,0.125,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2010,1.055073,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2011,0.810264,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2012,0.90909,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2013,1.007916,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2014,1.2904655,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2015,1.573015,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2016,1.6170075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2017,1.661,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2018,1.661,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2019,1.661,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2020,1.661,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Canada,2021,1.661,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2010,0.089277778,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2011,0.086422222,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2012,0.083566667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2013,0.080711111,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2014,0.077855556,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2015,0.075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2016,0.075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2017,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2018,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2019,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2020,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Chile,2021,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2010,0.77425,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2011,0.899375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2012,1.0245,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2013,1.149625,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2014,1.27475,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2015,1.399875,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2016,1.525,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2017,1.174784325,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2018,0.82456865,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2019,0.848613596,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2020,0.872335822,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Colombia,2021,0.8627852,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2013,0.22,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2014,0.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2015,0.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2016,0.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2017,0.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2018,0.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2019,0.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2020,0.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Costa Rica,2021,0.22,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2010,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2011,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2012,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2013,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2014,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2015,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2016,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2017,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2018,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2019,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2020,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Croatia,2021,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cyprus,2014,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cyprus,2015,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cyprus,2016,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cyprus,2017,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cyprus,2018,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cyprus,2019,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cyprus,2020,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Cyprus,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2010,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2011,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2012,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2013,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2014,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2015,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2016,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2017,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2018,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2019,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2020,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Djibouti,2021,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2010,0.836,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2011,0.8954,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2012,0.9548,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2013,1.0142,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2014,1.0736,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2015,1.133,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2016,1.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2017,1.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2018,1.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2019,1.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2020,1.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Dominican Republic,2021,1.133,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2010,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2011,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2012,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2013,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2014,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2015,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2016,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2017,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2018,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2019,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2020,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),El Salvador,2021,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2010,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2011,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2012,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2013,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2014,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2015,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2016,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2017,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2018,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2019,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2020,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Eswatini,2021,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2010,0.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2011,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2012,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2013,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2014,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2015,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2016,0.687,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2017,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2018,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2019,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2020,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ethiopia,2021,0.687,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Finland,2019,0.1,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Finland,2020,0.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Finland,2021,0.1,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2010,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2011,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2012,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2013,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2014,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2015,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2016,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2017,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2018,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2019,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2020,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Georgia,2021,0.188,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2010,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2011,0.025,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2012,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2013,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2014,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2015,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2016,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2017,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2018,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2019,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2020,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Honduras,2021,0.025,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Hungary,2015,0.0219,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Hungary,2016,0.0218,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Hungary,2017,0.0199,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Hungary,2018,0.025168011,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Hungary,2019,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Hungary,2020,0.0201,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Hungary,2021,0.0201,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Indonesia,2014,0.4358,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Indonesia,2015,0.5375,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Indonesia,2016,0.6392,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Indonesia,2017,0.6392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Indonesia,2018,0.6392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Indonesia,2019,0.6392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Indonesia,2020,0.6392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Indonesia,2021,0.6392,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ireland,2018,0.0013,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ireland,2019,0.0021,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ireland,2020,0.0022,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ireland,2021,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2013,1.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2014,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2015,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2016,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2017,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2018,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2019,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2020,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Italy,2021,1.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jamaica,2014,0.009,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jamaica,2015,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jamaica,2016,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jamaica,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jamaica,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jamaica,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jamaica,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jamaica,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Japan,2016,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Japan,2017,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Japan,2018,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Japan,2019,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Japan,2020,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Japan,2021,0.4,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2011,0.0071,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2012,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2013,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2014,0.0071,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2015,0.0072,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2016,0.0076,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2017,0.0071,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2018,0.0071,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2019,0.01007,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2020,0.01007,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Jordan,2021,0.01007,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kazakhstan,2018,3.49,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kazakhstan,2019,3.37,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kazakhstan,2020,3.09,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kazakhstan,2021,3.09,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2010,0.255,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2011,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2012,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2013,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2014,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2015,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2016,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2017,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2018,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2019,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2020,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kenya,2021,0.255,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kuwait,2015,0.1554,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kuwait,2016,0.1321,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kuwait,2017,0.1672,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kuwait,2018,0.1672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kuwait,2019,0.1672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kuwait,2020,0.1672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Kuwait,2021,0.1672,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Latvia,2014,0.0024,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Latvia,2015,0.0026,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Latvia,2016,0.0027,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Latvia,2017,0.002542614,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Latvia,2018,0.001707,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Latvia,2019,0.001829,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Latvia,2020,0.001873,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Latvia,2021,0.001873,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Lithuania,2014,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Lithuania,2015,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Lithuania,2016,0.0031,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Lithuania,2017,0.0036,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Lithuania,2018,0.00343,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Lithuania,2019,0.00343,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Lithuania,2020,0.00343,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Lithuania,2021,0.00343,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2010,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2011,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2012,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2013,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2014,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2015,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2016,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2017,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2018,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2019,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2020,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mali,2021,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Malta,2017,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Malta,2018,0.001383661,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Malta,2019,0.001191505,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Malta,2020,0.001235075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Malta,2021,0.001203772,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mexico,2014,0.202,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mexico,2015,0.207,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mexico,2016,0.21,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mexico,2017,0.218,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mexico,2018,0.226,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mexico,2019,0.233,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mexico,2020,0.234,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mexico,2021,0.233,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2010,0.109983333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2011,0.106966667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2012,0.10395,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2013,0.100933333,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2014,0.097916667,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2015,0.0949,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2016,0.1248,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2017,0.1248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2018,0.1248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2019,0.1248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2020,0.1248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mongolia,2021,0.1248,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mozambique,2015,0.071,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mozambique,2016,0.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mozambique,2017,0.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mozambique,2018,0.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mozambique,2019,0.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mozambique,2020,0.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Mozambique,2021,0.071,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2010,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2011,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2012,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2013,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2014,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2015,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2016,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2017,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2018,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2019,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2020,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Namibia,2021,0.077,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Netherlands,2015,0.0369,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Netherlands,2016,0.0384,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Netherlands,2017,0.0395,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Netherlands,2018,0.0376,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Netherlands,2019,0.038152,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Netherlands,2020,0.0387,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Netherlands,2021,0.039215,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2010,0.276,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2011,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2012,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2013,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2014,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2015,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2016,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2017,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2018,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2019,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2020,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),New Zealand,2021,0.276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2011,0.075,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2012,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2013,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2014,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2015,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2016,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2017,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2018,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2019,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2020,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nicaragua,2021,0.075,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Niger,2014,0.1586,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Niger,2015,0.166,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Niger,2016,0.1733,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Niger,2017,0.1733,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Niger,2018,0.1733,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Niger,2019,0.1733,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Niger,2020,0.1733,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Niger,2021,0.1733,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2010,0.233,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2011,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2012,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2013,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2014,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2015,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2016,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2017,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2018,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2019,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2020,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Nigeria,2021,0.233,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2010,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2011,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2012,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2013,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2014,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2015,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2016,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2017,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2018,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2019,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2020,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Paraguay,2021,0.297,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Peru,2018,0.009,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Peru,2019,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Peru,2020,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Peru,2021,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2010,0.18,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2011,0.18,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2012,0.18,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2013,0.19,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2014,0.0187,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2015,0.176,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2016,0.1787,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2017,0.167599618,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2018,0.167713505,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2019,0.146886905,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2020,0.142188266,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Philippines,2021,0.132837127,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Poland,2014,0.008,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Poland,2015,0.009,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Poland,2016,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Poland,2017,0.221,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Poland,2018,0.432,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Poland,2019,0.44,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Poland,2020,0.4498459,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Poland,2021,0.429,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Moldova,2017,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Moldova,2018,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Moldova,2019,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Moldova,2020,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Moldova,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Romania,2014,0.017,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Romania,2015,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Romania,2016,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Romania,2017,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Romania,2018,0.021,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Romania,2019,0.022,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Romania,2020,0.017,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Romania,2021,0.023,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sao Tome and Principe,2016,0.0032,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sao Tome and Principe,2017,0.0032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sao Tome and Principe,2018,0.0032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sao Tome and Principe,2019,0.0032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sao Tome and Principe,2020,0.0032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sao Tome and Principe,2021,0.0032,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Senegal,2017,0.050933545,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Senegal,2018,0.052170272,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Senegal,2019,0.051860992,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Senegal,2020,0.051860992,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Senegal,2021,0.051860992,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Serbia,2014,0.0296,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Serbia,2015,0.0297,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Serbia,2016,0.0282,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Serbia,2017,0.0283,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Serbia,2018,0.0277,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Serbia,2019,0.0354,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Serbia,2020,0.0278,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Serbia,2021,0.027,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Slovakia,2014,0.0062,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Slovakia,2015,0.006,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Slovakia,2016,0.0061,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Slovakia,2017,0.0062,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Slovakia,2018,0.0065,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Slovakia,2019,0.0066,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Slovakia,2020,0.0066,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Slovakia,2021,0.0066431,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2013,0.39,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2014,0.2215,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2015,0.053,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2016,0.054,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2017,0.054,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2018,0.055,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2019,0.06,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2020,0.055,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),South Africa,2021,0.056,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sweden,2015,0.027,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sweden,2016,0.0272,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sweden,2017,0.0274,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sweden,2018,0.0276,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sweden,2019,0.0278,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sweden,2020,0.028,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Sweden,2021,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2010,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2011,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2012,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2013,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2014,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2015,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2016,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2017,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2018,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2019,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2020,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Togo,2021,0.03,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Tunisia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Tunisia,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Tunisia,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Tunisia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Tunisia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Tunisia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2010,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2011,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2012,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2013,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2014,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2015,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2016,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2017,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2018,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2019,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2020,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Turkmenistan,2021,0.084,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ukraine,2014,0.185,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ukraine,2015,0.174,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ukraine,2016,0.164,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ukraine,2017,0.165,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ukraine,2018,0.165,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ukraine,2019,0.165,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ukraine,2020,0.029,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Ukraine,2021,0.029,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Arab Emirates,2016,0.024098039,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Arab Emirates,2017,0.023702352,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Arab Emirates,2018,0.024298972,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Arab Emirates,2019,0.023783796,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Arab Emirates,2020,0.023160967,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Arab Emirates,2021,0.02238,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Kingdom,2015,0.025,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Kingdom,2016,0.026,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Kingdom,2017,0.026,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Kingdom,2018,0.026,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Kingdom,2019,0.026,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Kingdom,2020,0.026,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Kingdom,2021,0.026,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2010,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2011,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2012,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2013,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2014,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2015,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2016,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2017,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2018,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2019,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2020,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United Republic of Tanzania,2021,0.207,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United States of America,2015,10.43,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United States of America,2016,10.43,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United States of America,2017,10.43,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United States of America,2018,10.43,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United States of America,2019,10.43,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United States of America,2020,10.43,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),United States of America,2021,10.43,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2010,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2011,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2012,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2013,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2014,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2015,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2016,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2017,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2018,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2019,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2020,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uruguay,2021,0.23,10^9 m3/year,I,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uzbekistan,2019,0.586,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uzbekistan,2020,0.496,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Uzbekistan,2021,0.495,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Zimbabwe,2015,0.094,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Zimbabwe,2016,0.0942,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Zimbabwe,2017,0.0921,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Zimbabwe,2018,0.092050795,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Zimbabwe,2019,0.08053831,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Zimbabwe,2020,0.075699339,10^9 m3/year,-,False
+Water use,Water withdrawal by sector,Water withdrawal for livestock (watering and cleaning),Zimbabwe,2021,0.075699339,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Albania,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Albania,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Albania,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Albania,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Albania,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Albania,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Albania,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2010,0.4954,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2011,0.5552,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2012,0.615,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2013,0.553333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2014,0.491666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2015,0.43,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2016,0.855,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2017,0.631,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2018,0.631,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2019,0.631,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2020,0.631,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Algeria,2021,0.631,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2010,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2011,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2012,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2013,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2014,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2015,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Angola,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2010,0.006014286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2011,0.006557143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2012,0.0071,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2013,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2014,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2015,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2016,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2017,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2018,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2019,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2020,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Antigua and Barbuda,2021,0.0071,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2010,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2011,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2012,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2013,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2014,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2015,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2016,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2017,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2018,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2019,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2020,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Argentina,2021,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Armenia,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Armenia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Armenia,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Armenia,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Armenia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Armenia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Armenia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2010,0.077,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2011,0.121,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2012,0.151,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2013,0.135,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2014,0.177,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2015,0.144,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2016,0.15,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2017,0.20282195,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2018,0.171693,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2019,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2020,0.39,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Australia,2021,0.31,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2010,0.000905882,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2011,0.000776471,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2012,0.000647059,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2013,0.000517647,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2014,0.000388235,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2015,0.000258823,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2016,0.000129412,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Austria,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2010,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2011,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2012,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2013,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2014,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2015,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2016,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2017,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2018,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2019,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2020,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,The Bahamas,2021,0.0074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2010,0.176727273,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2011,0.187345455,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2012,0.197963636,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2013,0.208581818,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2014,0.2192,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2015,0.2416,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2016,0.2419,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2017,0.2419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2018,0.2419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2019,0.2419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2020,0.2419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bahrain,2021,0.2419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2010,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2011,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2012,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2013,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2014,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2015,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2016,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2017,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2018,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2019,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2020,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Barbados,2021,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Belgium,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Belgium,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Belgium,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Belgium,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Belgium,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2010,0.04,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2011,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2012,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2013,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2014,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2015,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2016,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2017,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2018,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2019,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2020,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Brazil,2021,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Bulgaria,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Bulgaria,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Bulgaria,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Bulgaria,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Bulgaria,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Bulgaria,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2010,0.05708181,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2011,0.063235344,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2012,0.069388879,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2013,0.075542413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2014,0.081695948,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2015,0.087849482,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2016,0.094003017,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2017,0.100156551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2018,0.106310086,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2019,0.11246362,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2020,0.09424673,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cape Verde,2021,0.09371773,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2010,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2011,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2012,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2013,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2014,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2015,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2016,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2017,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2018,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2019,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2020,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Canada,2021,0.0027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2010,0.05455,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2011,0.059525,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2012,0.0645,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2013,0.064666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2014,0.064833333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2015,0.065,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2016,0.065,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2017,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2018,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2019,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2020,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Chile,2021,0.065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2010,1.812922222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2011,2.713933333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2012,3.614944444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2013,4.515955556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2014,5.416966667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2015,6.317977778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2016,7.218988889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2017,8.12,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2018,8.64,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2019,10.45,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2020,12.81,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,China,2021,12.81,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Colombia,2018,0.001776237,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Colombia,2019,0.001482513,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Colombia,2020,0.001243703,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Colombia,2021,0.001243703,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2013,0.0031,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2014,0.0031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2015,0.0031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2016,0.0031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2017,0.0031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2018,0.0031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2019,0.0031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2020,0.0031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Costa Rica,2021,0.0031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2010,0.42154552,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2011,0.47186108,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2012,0.49553962,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2013,0.48456692,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2014,0.51997592,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2015,0.46827772,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2016,0.46957922,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2017,0.318109,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2018,0.316857,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2019,0.325,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2020,0.352,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Croatia,2021,0.337,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2010,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2011,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2012,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2013,0.0004,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2014,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2015,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2016,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2017,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2018,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2019,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2020,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cuba,2021,0.0004,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2010,0.0335,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2011,0.0335,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2012,0.0335,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2013,0.0335,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2014,0.033,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2015,0.038,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2016,0.069,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2017,0.069,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2018,0.07,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2019,0.055,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2020,0.052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Cyprus,2021,0.049,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2010,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2011,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2012,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2013,0.0002,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2014,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2015,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2016,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2017,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2018,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2019,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2020,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Czech Republic,2021,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2010,0.013125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2011,0.01125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2012,0.009375,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2013,0.0075,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2014,0.005625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2015,0.00375,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2016,0.001875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Denmark,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2010,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2011,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2012,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2013,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2014,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2015,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Djibouti,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2010,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2011,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2012,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2013,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2014,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2015,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2016,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2017,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2018,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2019,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2020,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ecuador,2021,0.0022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2010,0.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2011,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2012,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2013,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2014,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2015,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2016,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2017,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2018,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2019,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2020,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Egypt,2021,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2010,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2011,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2012,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2013,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2014,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2015,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,El Salvador,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2010,6.1539e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2011,5.3846e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2012,4.6154e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2013,3.8461e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2014,3.0769e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2015,2.3077e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2016,1.5385e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2017,7.692e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Finland,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2010,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2011,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2012,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2013,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2014,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2015,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2016,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2017,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2018,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2019,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2020,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,France,2021,0.0117,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ghana,2016,0.016,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Ghana,2017,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ghana,2018,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ghana,2019,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ghana,2020,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ghana,2021,0.016,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2010,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2011,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2012,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2013,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2014,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2015,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2016,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2017,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2018,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2019,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2020,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Greece,2021,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2010,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2011,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2012,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2013,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2014,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2015,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2016,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2017,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2018,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2019,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2020,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Honduras,2021,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2010,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2011,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2012,0.0002,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2013,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2014,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2015,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2016,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2017,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2018,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2019,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2020,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Hungary,2021,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2010,0.0006,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2011,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2012,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2013,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2014,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2015,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2016,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2017,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2018,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2019,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2020,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,India,2021,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2010,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2011,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2012,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2013,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2014,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2015,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2016,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2017,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2018,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2019,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2020,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Indonesia,2021,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2010,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2011,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2012,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2013,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2014,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2015,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2016,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2017,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2018,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2019,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2020,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iran,2021,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2010,0.010685714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2011,0.011014286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2012,0.011342857,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2013,0.011671429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2014,0.012,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2015,0.011,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2016,0.007,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2017,0.007,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2018,0.006,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2019,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2020,0.002,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Iraq,2021,0.0003,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2010,0.000133333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2011,0.000111111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2012,8.8889e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2013,6.6667e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2014,4.4444e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2015,2.2222e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Ireland,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2010,0.264,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2011,0.3118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2012,0.3596,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2013,0.4074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2014,0.4552,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2015,0.503,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2016,0.543,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2017,0.586,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2018,0.645,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2019,0.609,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2020,0.576,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Israel,2021,0.533,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2010,0.154355556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2011,0.160061111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2012,0.165766667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2013,0.171472222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2014,0.177177778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2015,0.182883333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2016,0.188588889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2017,0.194294444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2018,0.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2019,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2020,0.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Italy,2021,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2010,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2011,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2012,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2013,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2014,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2015,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2016,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2017,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2018,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2019,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2020,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jamaica,2021,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2010,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2011,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2012,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2013,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2014,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2015,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2016,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2017,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2018,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2019,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2020,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Japan,2021,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2010,0.007688889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2011,0.007266667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2012,0.006844444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2013,0.006422222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2014,0.006,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2015,0.006,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2016,0.0042,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2017,0.0041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2018,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2019,0.0031,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2020,0.00249,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Jordan,2021,0.00067,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2010,0.853,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2011,0.90975,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2012,0.9665,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2013,1.02325,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2014,1.08,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2015,1.19,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2016,1.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2017,1.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2018,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2019,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2020,0.02,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Kazakhstan,2021,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2010,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2011,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2012,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2013,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2014,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2015,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2016,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2017,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2018,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2019,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2020,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Kuwait,2021,0.4202,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Latvia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Latvia,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Latvia,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Latvia,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Latvia,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Latvia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2010,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2011,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2012,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2013,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2014,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2015,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2016,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2017,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2018,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2019,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2020,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lebanon,2021,0.0473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2010,0.063428571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2011,0.066714286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2012,0.07,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2013,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2014,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2015,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2016,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2017,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2018,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2019,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2020,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Libya,2021,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lithuania,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Lithuania,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Lithuania,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Lithuania,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Lithuania,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lithuania,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Lithuania,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Luxembourg,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Luxembourg,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Luxembourg,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Luxembourg,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Luxembourg,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2010,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2011,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2012,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2013,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2014,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2015,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2016,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2017,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2018,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2019,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2020,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malaysia,2021,0.0043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2010,0.004885714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2011,0.006728571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2012,0.008571429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2013,0.010414286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2014,0.012257143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2015,0.0141,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2016,0.0145,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2017,0.0153,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2018,0.0153,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2019,0.0153,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2020,0.0153,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Maldives,2021,0.0153,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2010,0.0189,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2011,0.0189,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2012,0.0189,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2013,0.0189,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2014,0.0178,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2015,0.0191,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2016,0.0199,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2017,0.0202,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2018,0.020290507,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2019,0.0211729,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2020,0.020440487,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Malta,2021,0.020513559,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2010,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2011,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2012,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2013,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2014,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2015,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2016,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2017,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2018,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2019,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2020,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Marshall Islands,2021,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2010,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2011,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2012,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2013,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2014,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2015,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2016,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2017,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2018,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2019,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2020,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mauritania,2021,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2010,0.01585,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2011,0.014225,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2012,0.0126,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2013,0.010975,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2014,0.00935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2015,0.007725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2016,0.0061,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2017,0.0061,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2018,0.0121,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2019,0.0119,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2020,0.0133,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Mexico,2021,0.013,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Mongolia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2010,0.007,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2011,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2012,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2013,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2014,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2015,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2016,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2017,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2018,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2019,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2020,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Morocco,2021,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2010,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2011,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2012,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2013,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2014,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2015,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2016,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2017,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2018,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2019,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2020,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Namibia,2021,0.0003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Netherlands,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Netherlands,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Netherlands,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Netherlands,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Netherlands,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Netherlands,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Netherlands,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2010,0.000254546,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2011,0.000281818,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2012,0.000309091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2013,0.000336364,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2014,0.000363636,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2015,0.000390909,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2016,0.000418182,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2017,0.000445454,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2018,0.000472727,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2019,0.0005,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2020,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nicaragua,2021,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2010,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2011,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2012,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2013,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2014,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2015,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2016,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Nigeria,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2010,0.0001,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2011,0.0002,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2012,0.0002,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2013,0.0001,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2014,0.00013,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2015,0.00027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2016,0.00041,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2017,0.00057,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2018,0.0006,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2019,0.00044,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2020,0.00043,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Norway,2021,0.00144,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2010,0.1665,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2011,0.180875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2012,0.19525,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2013,0.209625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2014,0.224,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2015,0.239,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2016,0.279,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2017,0.33,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2018,0.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2019,0.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2020,0.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Oman,2021,0.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Palestine,2014,0.0047,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Palestine,2015,0.0039,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Palestine,2016,0.0039,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Palestine,2017,0.004,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Palestine,2018,0.0041,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Palestine,2019,0.0041,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Palestine,2020,0.0057,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Palestine,2021,0.0075,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2011,8e-06,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2012,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2013,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2014,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2015,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2016,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2017,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2018,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2019,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2020,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Paraguay,2021,8e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2010,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2011,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2012,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2013,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2014,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2015,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2016,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2017,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2018,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2019,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2020,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Peru,2021,0.0054,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2010,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2011,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2012,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2013,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2014,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2015,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2016,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2017,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2018,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2019,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2020,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Poland,2021,0.007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2010,0.002043333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2011,0.002191111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2012,0.002338889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2013,0.002486667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2014,0.002634444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2015,0.002782222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2016,0.00293,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2017,0.00203,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2018,0.00124,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2019,0.00124,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2020,0.00124,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Portugal,2021,0.00124,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2010,0.35075,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2011,0.3849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2012,0.41905,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2013,0.4532,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2014,0.4932,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2015,0.5328,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2016,0.5576,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2017,0.6028,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2018,0.64,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2019,0.6684,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2020,0.6893,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Qatar,2021,0.669,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2010,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2011,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2012,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2013,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2014,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2015,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2016,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2017,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2018,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2019,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2020,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Korea,2021,0.0002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Moldova,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Moldova,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Moldova,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Moldova,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Moldova,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2010,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2011,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2012,0.0033,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2013,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2014,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2015,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2016,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2017,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2018,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2019,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2020,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Kitts and Nevis,2021,0.0033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2013,0.0006,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2014,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2015,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2016,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2017,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2018,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2019,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2020,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saint Vincent and the Grenadines,2021,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2010,1.374333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2011,1.459666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2012,1.545,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2013,1.594,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2014,1.69,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2015,1.84,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2016,1.947,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2017,2.18,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2018,2.137,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2019,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2020,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Saudi Arabia,2021,2.137,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2010,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2011,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2012,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2013,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2014,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2015,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2016,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2017,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2018,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2019,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2020,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Senegal,2021,5e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2010,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2011,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2012,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2013,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2014,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2015,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2016,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2017,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2018,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2019,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2020,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Seychelles,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2010,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2011,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2012,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2013,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2014,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2015,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2016,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2017,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2018,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2019,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2020,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Singapore,2021,0.0072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2010,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2011,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2012,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2013,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2014,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2015,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Somalia,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2010,0.049052632,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2011,0.052157895,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2012,0.055263158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2013,0.058368421,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2014,0.061473684,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2015,0.064578947,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2016,0.06768421,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2017,0.070789474,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2018,0.073894737,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2019,0.077,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2020,0.077,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,South Africa,2021,0.077,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2010,0.180466667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2011,0.2206,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2012,0.260733333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2013,0.300866667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2014,0.341,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2015,0.351,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2016,0.364,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2017,0.395,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2018,0.405,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2019,0.4125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2020,0.42,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Spain,2021,0.42,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2010,0.0002,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2011,0.00028,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2012,0.00036,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2013,0.00044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2014,0.00052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2015,0.0006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2016,0.00068,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2017,0.00076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2018,0.00084,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2019,0.00092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2020,0.001,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Sweden,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Switzerland,2014,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Switzerland,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Switzerland,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Switzerland,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Switzerland,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Switzerland,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Switzerland,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Switzerland,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tajikistan,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2010,0.045166667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2011,0.047,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2012,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2013,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2014,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2015,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2016,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2017,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2018,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2019,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2020,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Trinidad and Tobago,2021,0.047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2010,0.018481818,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2011,0.019090909,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2012,0.0197,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2013,0.02175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2014,0.0238,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2015,0.02585,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2016,0.0279,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2017,0.0301,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2018,0.0427,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2019,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2020,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Tunisia,2021,0.043,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkmenistan,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2010,0.002766667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2011,0.0039,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2012,0.005033333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2013,0.006166667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2014,0.0073,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2015,0.00775,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2016,0.0082,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2017,0.014719939,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2018,0.021239878,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2019,0.021119939,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2020,0.021,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Turkey,2021,0.021,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2010,1.68,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2011,1.713,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2012,1.819,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2013,1.875,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2014,1.949,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2015,2.005,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2016,2.004648713,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2017,2.007580068,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2018,2.044561625,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2019,2.021,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2020,2.036,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Arab Emirates,2021,2.03969042,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2010,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2011,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2012,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2013,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2014,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2015,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2016,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2017,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2018,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2019,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2020,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United Kingdom,2021,0.0333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2010,0.58,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2011,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2012,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2013,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2014,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2015,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2016,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2017,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2018,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2019,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2020,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,United States of America,2021,0.58,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Uzbekistan,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Uzbekistan,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Uzbekistan,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2010,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2011,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2012,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2013,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2014,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2015,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2016,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2017,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2018,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2019,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2020,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Venezuela,2021,0.0052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2010,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2011,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2012,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2013,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2014,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2015,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2016,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2017,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2018,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2019,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2020,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Desalinated water produced,Yemen,2021,0.0251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Albania,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Albania,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Albania,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Albania,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Albania,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Albania,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Albania,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Armenia,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Armenia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Armenia,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Armenia,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Armenia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Armenia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Armenia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2010,0.045,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2011,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2012,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2013,0.045,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2014,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2015,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2016,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2017,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2018,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2019,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2020,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Australia,2021,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2010,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2011,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2012,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2013,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2014,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2015,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Bhutan,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Cape Verde,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Cape Verde,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Cape Verde,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2010,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2011,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2012,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2013,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2014,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Croatia,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Denmark,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Denmark,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Denmark,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Denmark,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Denmark,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2010,2.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2011,4.9,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2012,7.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2013,9.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2014,11.5,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2015,11.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2016,11.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2017,11.9,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2018,11.9,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2019,11.9,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2020,11.9,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Egypt,2021,11.9,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Finland,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Finland,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Finland,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Finland,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Georgia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Georgia,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Georgia,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Georgia,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Georgia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Georgia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2010,113.5,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2011,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2012,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2013,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2014,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2015,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2016,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2017,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2018,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2019,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2020,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,India,2021,113.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Iraq,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Jordan,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2010,0.108,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2011,0.1085,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2012,0.109,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2013,0.1095,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2014,0.11,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2015,0.11,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2016,0.09,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2017,0.1,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2018,0.1,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2019,0.1,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2020,0.1,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kazakhstan,2021,0.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2010,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2011,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2012,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2013,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2014,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2015,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2016,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2017,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2018,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2019,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2020,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Kyrgyzstan,2021,0.2999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Latvia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Latvia,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Latvia,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Latvia,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Latvia,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Latvia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2010,0.090272727,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2011,0.077818182,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2012,0.065363636,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2013,0.052909091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2014,0.040454546,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2015,0.028,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2016,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2017,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2018,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2019,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2020,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lebanon,2021,0.028,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lithuania,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lithuania,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lithuania,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lithuania,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lithuania,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lithuania,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Lithuania,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Luxembourg,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Luxembourg,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Luxembourg,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Luxembourg,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Luxembourg,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Luxembourg,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Luxembourg,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Malta,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Malta,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Malta,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Malta,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Malta,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Malta,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Malta,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Netherlands,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Netherlands,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Netherlands,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Netherlands,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Netherlands,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Netherlands,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Netherlands,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Oman,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Oman,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Oman,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Oman,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Oman,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Oman,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Oman,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Palestine,2018,0.1819,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Palestine,2019,0.1819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Palestine,2020,0.1819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Palestine,2021,0.1819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2010,0.062,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2011,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2012,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2013,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2014,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2015,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2016,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2017,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2018,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2019,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2020,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Peru,2021,0.062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Qatar,2014,0.057,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Qatar,2015,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Qatar,2016,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Qatar,2017,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Qatar,2018,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Qatar,2019,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Qatar,2020,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Qatar,2021,0.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Moldova,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Moldova,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Moldova,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Moldova,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Moldova,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Rwanda,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Spain,2020,2.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Spain,2021,2.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2010,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2011,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2012,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2013,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2014,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2015,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2016,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2017,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2018,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2019,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2020,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Syria,2021,2.246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2010,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2011,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2012,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2013,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2014,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2015,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2016,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2017,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2018,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2019,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2020,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tajikistan,2021,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tunisia,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tunisia,2017,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tunisia,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tunisia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tunisia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Tunisia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2010,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2011,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2012,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2013,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2014,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2015,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2016,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2017,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2018,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2019,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2020,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Turkmenistan,2021,0.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Ukraine,2014,0.078,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Ukraine,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Ukraine,2016,0.062,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Ukraine,2017,0.083,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Ukraine,2018,0.083,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Ukraine,2019,0.081,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Ukraine,2020,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Ukraine,2021,0.081,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,United Arab Emirates,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,United Arab Emirates,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,United Arab Emirates,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,United Arab Emirates,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,United Arab Emirates,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,United Arab Emirates,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2010,3.781666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2011,3.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2012,2.558333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2013,1.946666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2014,1.335,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2015,1.589,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2016,1.727,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2017,1.658666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2018,1.590333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2019,1.522,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2020,1.742,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Uzbekistan,2021,1.694,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Zimbabwe,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Zimbabwe,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Zimbabwe,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Direct use of agricultural drainage water,Zimbabwe,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Albania,2015,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Albania,2016,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Albania,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Albania,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Albania,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Albania,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Albania,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Algeria,2015,0.05,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Algeria,2016,0.05,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Algeria,2017,0.05,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Algeria,2018,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Algeria,2019,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Algeria,2020,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Algeria,2021,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2010,0.090972727,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2011,0.091,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2012,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2013,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2014,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2015,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2016,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2017,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2018,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2019,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2020,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Argentina,2021,0.091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2010,6.3636e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2011,5.4546e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2012,4.5455e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2013,3.6364e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2014,2.7273e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2015,1.8182e-05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2016,9.091e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Armenia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2010,0.373,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2011,0.388666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2012,0.404333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2013,0.42,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2014,0.295,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2015,0.17,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2016,0.16,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2017,0.14,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2018,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2019,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2020,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Australia,2021,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Austria,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Austria,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Austria,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Austria,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Austria,2021,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2010,0.016085714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2011,0.016042857,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2012,0.016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2013,0.0237,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2014,0.0314,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2015,0.0296,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2016,0.0392,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2017,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2018,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2019,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2020,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Bahrain,2021,0.0392,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2010,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2011,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2012,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2013,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2014,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2015,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2016,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Belgium,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2010,0.01925,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2011,0.024375,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2012,0.0295,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2013,0.034625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2014,0.03975,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2015,0.044875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2016,0.05,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2017,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2018,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2019,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2020,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Brazil,2021,0.05,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2011,0.0013,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2012,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2013,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2014,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2015,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2016,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2017,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2018,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2019,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2020,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Burkina Faso,2021,0.0013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cape Verde,2019,0.00306436,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cape Verde,2020,0.00743783,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cape Verde,2021,0.01190332,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Chile,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2010,3.37,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2011,3.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2012,3.53,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2013,3.86,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2014,3.86,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2015,3.86,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2016,3.86,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2017,3.86,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2018,3.86,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2019,3.86,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2020,3.86,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,China,2021,3.86,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2010,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2011,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2012,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2013,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2014,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2015,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2016,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Croatia,2021,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2010,0.019657143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2011,0.018485714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2012,0.017314286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2013,0.016142857,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2014,0.014971429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2015,0.0138,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2016,0.0154,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2017,0.0154,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2018,0.0168,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2019,0.0168,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2020,0.0168,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Cyprus,2021,0.0168,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Denmark,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Denmark,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Denmark,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Denmark,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Denmark,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2010,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2011,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2012,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2013,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2014,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2015,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Djibouti,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2010,1.3,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2011,1.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2012,1.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2013,1.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2014,1.3,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2015,1.3,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2016,1.2,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2017,1.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2018,1.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2019,1.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2020,1.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Egypt,2021,1.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ethiopia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Finland,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Finland,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Finland,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Finland,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2010,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2011,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2012,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2013,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2014,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2015,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2016,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2017,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2018,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2019,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2020,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,France,2021,0.411,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Georgia,2016,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Georgia,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Georgia,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Georgia,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Georgia,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Georgia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2010,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2011,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2012,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2013,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2014,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2015,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2016,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2017,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2018,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2019,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2020,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Germany,2021,0.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2010,0.104,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2011,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2012,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2013,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2014,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2015,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2016,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2017,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2018,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2019,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2020,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Greece,2021,0.104,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2012,0.005,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2013,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2014,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2015,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2016,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2017,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2018,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2019,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2020,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Iraq,2021,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ireland,2016,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ireland,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ireland,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ireland,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ireland,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ireland,2021,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2010,0.416,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2011,0.428,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2012,0.44,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2013,0.452,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2014,0.464,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2015,0.476,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2016,0.512,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2017,0.52,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2018,0.514,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2019,0.545,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2020,0.548,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Israel,2021,0.557,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2010,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2011,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2012,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2013,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2014,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2015,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2016,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2017,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2018,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2019,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2020,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Italy,2021,0.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2010,0.194,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2011,0.195,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2012,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2013,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2014,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2015,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2016,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2017,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2018,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2019,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2020,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Japan,2021,0.195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2010,0.022828571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2011,0.018621429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2012,0.014414286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2013,0.010207143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2014,0.006,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2015,0.006,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2016,0.0042,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2017,0.1467,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2018,0.1494,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2019,0.1599,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2020,0.17009,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Jordan,2021,0.16716,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2010,0.194,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2011,0.179142857,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2012,0.164285714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2013,0.149428571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2014,0.134571429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2015,0.119714286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2016,0.104857143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2017,0.09,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2018,0.05,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2019,0.07,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2020,0.09,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kazakhstan,2021,0.09,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2010,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2011,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2012,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2013,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2014,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2015,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2016,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2017,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2018,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2019,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2020,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kuwait,2021,0.078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2010,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2011,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2012,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2013,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2014,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2015,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2016,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2017,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2018,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2019,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2020,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Kyrgyzstan,2021,0.0001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2010,0.010285714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2011,0.008571429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2012,0.006857143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2013,0.005142857,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2014,0.003428571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2015,0.001714286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2016,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Latvia,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2010,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2011,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2012,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2013,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2014,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2015,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2016,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2017,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2018,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2019,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2020,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lebanon,2021,0.002,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2010,0.004166667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2011,0.003333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2012,0.0025,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2013,0.001666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2014,0.000833333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2015,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2016,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Lithuania,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Luxembourg,2015,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Luxembourg,2016,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Luxembourg,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Luxembourg,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Luxembourg,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Luxembourg,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Luxembourg,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2010,0.00226,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2011,0.00197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2012,0.00168,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2013,0.00139,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2014,0.0011,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2015,0.001,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2016,0.001,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2017,0.0006,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2018,0.000703967,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2019,0.000950956,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2020,0.001498791,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Malta,2021,0.001412675,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mauritius,2015,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mauritius,2016,0.006,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mauritius,2017,0.006,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mauritius,2018,0.005,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mauritius,2019,0.003,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mauritius,2020,0.001,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mauritius,2021,0.001,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2010,0.688,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2011,0.804,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2012,0.764666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2013,0.725333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2014,0.686,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2015,0.5964,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2016,0.8982,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2017,0.8982,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2018,0.8982,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2019,1.55,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2020,1.6,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Mexico,2021,1.58,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2010,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2011,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2012,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2013,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2014,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2015,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2016,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2017,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2018,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2019,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2020,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Morocco,2021,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2010,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2011,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2012,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2013,0.0058,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2014,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2015,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2016,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2017,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2018,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2019,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2020,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Namibia,2021,0.0058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2010,0.002666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2011,0.002133333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2012,0.0016,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2013,0.001066667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2014,0.000533333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2015,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2016,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Netherlands,2021,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2010,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2011,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2012,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2013,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2014,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2015,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2016,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2017,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2018,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2019,0.0011,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2020,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Nicaragua,2021,0.0011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2010,0.056227273,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2011,0.057818182,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2012,0.059409091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2013,0.061,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2014,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2015,0.061,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2016,0.061,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2017,0.061,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2018,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2019,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2020,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Oman,2021,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2010,0.0042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2011,0.003716667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2012,0.003233333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2013,0.00275,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2014,0.002266667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2015,0.001783333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2016,0.0013,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2017,0.013,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2018,0.013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2019,0.013,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2020,0.02336,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Palestine,2021,0.0233,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2010,0.10145,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2011,0.172,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2012,0.0303,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2013,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2014,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2015,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2016,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2017,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2018,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2019,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2020,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Peru,2021,0.0303,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2010,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2011,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2012,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2013,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2014,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2015,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2016,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Poland,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2010,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2011,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2012,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2013,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2014,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2015,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2016,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2017,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2018,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2019,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2020,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Portugal,2021,0.003,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2010,0.06345,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2011,0.068933333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2012,0.074416667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2013,0.0799,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2014,0.094,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2015,0.0975,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2016,0.1042,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2017,0.1334,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2018,0.15087708,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2019,0.1627,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2020,0.1755,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Qatar,2021,0.185,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2010,0.657118182,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2011,0.728563636,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2012,0.800009091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2013,0.871454546,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2014,0.9429,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2015,1.028,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2016,1.118,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2017,1.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2018,1.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2019,1.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2020,1.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Korea,2021,1.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Moldova,2017,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Moldova,2018,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Moldova,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Moldova,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Moldova,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Rwanda,2021,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2010,1.003,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2011,0.5985,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2012,0.194,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2013,0.183,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2014,0.256,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2015,0.229,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2016,0.216,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2017,0.254,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2018,0.3,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2019,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2020,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Saudi Arabia,2021,0.3,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2010,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2011,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2012,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2013,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2014,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2015,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2016,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2017,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2018,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2019,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2020,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Seychelles,2021,6e-06,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2010,0.166,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2011,0.194,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2012,0.194,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2013,0.194,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2014,0.1719,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2015,0.1498,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2016,0.1476,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2017,0.1601,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2018,0.1611,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2019,0.1634,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2020,0.1541,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Singapore,2021,0.1541,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2010,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2011,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2012,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2013,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2014,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2015,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2016,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2017,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2018,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2019,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2020,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,South Africa,2021,1.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2010,0.513,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2011,0.51725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2012,0.5215,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2013,0.52575,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2014,0.53,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2015,0.511,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2016,0.592,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2017,0.526,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2018,0.526,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2019,0.5285,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2020,0.531,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Spain,2021,0.531,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Switzerland,2019,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Switzerland,2020,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Switzerland,2021,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2010,0.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2011,0.505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2012,0.55,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2013,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2014,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2015,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2016,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2017,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2018,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2019,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2020,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Syria,2021,0.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tajikistan,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2010,0.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2011,0.05875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2012,0.0495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2013,0.04025,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2014,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2015,0.02175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2016,0.0125,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2017,0.0131,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2018,0.014,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2019,0.0212,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2020,0.02088,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Tunisia,2021,0.02088,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2010,0.037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2011,0.035,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2012,0.033,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2013,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2014,0.029,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2015,0.027,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2016,0.025,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2017,0.035195,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2018,0.04539,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2019,0.057265,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2020,0.06914,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Turkey,2021,0.06914,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ukraine,2017,0.003,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ukraine,2018,0.003,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ukraine,2019,0.003,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ukraine,2020,0.009,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Ukraine,2021,0.009,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2010,0.362917558,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2011,0.38590107,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2012,0.408884581,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2013,0.431868093,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2014,0.454851604,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2015,0.477835116,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2016,0.500818627,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2017,0.54919136,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2018,0.542935539,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2019,0.567,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2020,0.564,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Arab Emirates,2021,0.561,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2010,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2011,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2012,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2013,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2014,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2015,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2016,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2017,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2018,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2019,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2020,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United Kingdom,2021,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2010,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2011,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2012,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2013,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2014,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2015,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2016,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2017,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2018,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2019,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2020,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,United States of America,2021,2.774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Uzbekistan,2019,0.9,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Uzbekistan,2020,0.9,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Uzbekistan,2021,0.92,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2010,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2011,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2012,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2013,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2014,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2015,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2016,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2017,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2018,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2019,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2020,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Vietnam,2021,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2010,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2011,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2012,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2013,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2014,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2015,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2016,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2017,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2018,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2019,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2020,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Yemen,2021,0.006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Zimbabwe,2018,0.00753,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Zimbabwe,2019,0.006972985,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Zimbabwe,2020,0.006794709,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Direct use of treated municipal wastewater,Zimbabwe,2021,0.006794709,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2010,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2011,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2012,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2013,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2014,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2015,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2016,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2017,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2018,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2019,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2020,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Afghanistan,2021,3.042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Albania,2015,0.19,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Albania,2016,0.108,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Albania,2017,0.107,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Albania,2018,0.099,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Albania,2019,0.216,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Albania,2020,0.082,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Albania,2021,0.111,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2012,3.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2013,4.408,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2014,5.816,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2015,7.224,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2016,6.33,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2017,8.103,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2018,8.103,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2019,8.103,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2020,8.103,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Algeria,2021,8.103,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2012,0.0007,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2013,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2014,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2015,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2016,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2017,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2018,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2019,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2020,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Antigua and Barbuda,2021,0.0007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2011,11.33,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2012,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2013,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2014,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2015,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2016,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2017,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2018,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2019,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2020,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Argentina,2021,11.33,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2010,0.876,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2011,1.003,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2012,1.314,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2013,1.349,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2014,1.312,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2015,1.304,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2016,1.136,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2017,1.15,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2018,1.192,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2019,1.294,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2020,1.389,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Armenia,2021,1.456,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2010,3.000666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2011,2.804533333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2012,2.6084,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2013,2.412266667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2014,2.216133333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2015,2.02,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2016,0.58,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2017,0.57,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2018,0.57,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2019,0.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2020,0.58,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Australia,2021,0.52,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2010,1.061470267,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2011,1.080418015,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2012,1.099365764,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2013,1.118313512,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2014,1.13726126,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2015,1.156209008,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2016,1.175156756,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2017,1.194104504,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2018,1.213052252,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2019,1.232,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2020,1.232,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Austria,2021,1.232,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2010,1.272,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2011,1.506,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2012,1.696,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2013,1.738,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2014,1.819,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2015,2.016,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2016,2.075,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2017,2.066,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2018,2.095,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2019,2.366,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2020,2.39465,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Azerbaijan,2021,2.33522,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2010,0.200772727,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2011,0.195354546,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2012,0.189936364,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2013,0.184518182,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2014,0.1791,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2015,0.1591,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2016,0.1551,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2017,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2018,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2019,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2020,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bahrain,2021,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2010,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2011,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2012,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2013,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2014,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2015,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2016,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2017,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2018,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2019,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2020,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bangladesh,2021,28.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2010,0.854,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2011,0.853,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2012,0.852,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2013,0.851,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2014,0.867,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2015,0.845,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2016,0.819,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2017,0.811,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2018,0.809,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2019,0.802,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2020,0.799,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belarus,2021,0.813,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2010,0.6124,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2011,0.6024,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2012,0.6361,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2013,0.6392,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2014,0.632,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2015,0.6319,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2016,0.626236268,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2017,0.620572535,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2018,0.627,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2019,0.61,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2020,0.634,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Belgium,2021,0.634,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2010,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2011,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2012,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2013,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2014,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2015,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2016,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2017,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2018,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2019,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2020,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Benin,2021,0.041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bhutan,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2010,0.3286,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2011,0.3022,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2012,0.3045,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2013,0.3068,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2014,0.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2015,0.3106,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2016,0.3123,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2017,0.2937,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2018,0.1427,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2019,0.143,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2020,0.137292,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bosnia and Herzegovina,2021,0.14003,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2010,0.102090909,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2011,0.0993,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2012,0.1034,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2013,0.1015,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2014,0.0996,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2015,0.1088,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2016,0.1123,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2017,0.1169,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2018,0.1212,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2019,0.1064,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2020,0.1403122,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Botswana,2021,0.1077169,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brazil,2014,4.552,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brazil,2015,4.47,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brazil,2016,12.47,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brazil,2017,10.48,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brazil,2018,17.36,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brazil,2019,9.97,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brazil,2020,9.91,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brazil,2021,7.81,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2010,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2011,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2012,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2013,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2014,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2015,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2016,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2017,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2018,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2019,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2020,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Brunei,2021,0.0005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2010,0.5567,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2011,0.5447,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2012,0.5656,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2013,0.558,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2014,0.5468,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2015,0.5584,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2016,0.561,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2017,0.582,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2018,0.566,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2019,0.562,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2020,0.561,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Bulgaria,2021,0.561,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2010,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2011,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2012,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2013,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2014,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2015,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2016,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2017,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2018,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2019,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2020,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Burkina Faso,2021,0.011,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cape Verde,2019,0.13877253,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cape Verde,2020,0.19873121,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cape Verde,2021,0.16323252,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2010,1.648827892,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2011,1.577967828,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2012,1.615200777,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2013,1.652433726,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2014,1.618081898,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2015,1.58373007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2016,1.595321042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2017,1.606912013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2018,1.606912013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2019,1.606912013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2020,1.606912013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Canada,2021,1.606912013,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2010,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2011,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2012,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2013,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2014,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2015,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2016,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2017,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2018,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2019,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2020,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Chile,2021,2.778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2010,110.181558642,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2011,110.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2012,113.4,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2013,112.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2014,111.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2015,106.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2016,109.107363974,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2017,101.67,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2018,97.64,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2019,93.42,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2020,89.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,China,2021,89.25,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2010,1.442897834,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2011,1.62784675,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2012,1.812795667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2013,1.997744584,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2014,2.1826935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2015,2.367642417,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2016,2.552591334,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2017,1.830179786,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2018,1.107768239,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2019,1.178030314,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2020,1.187477975,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Colombia,2021,1.225404995,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2010,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2011,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2012,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2013,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2014,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2015,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2016,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2017,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2018,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2019,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2020,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Republic of Congo,2021,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2012,0.312613,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2013,0.345669,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2014,0.395457,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2015,0.408588,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2016,0.364915,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2017,0.18,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2018,0.35693,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2019,0.39813,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2020,0.40882,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Costa Rica,2021,0.47886,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2010,0.465123497,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2011,0.463604882,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2012,0.433302933,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2013,0.43068761,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2014,0.400370394,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2015,0.419269653,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2016,0.433858886,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2017,0.415024277,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2018,0.411462866,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2019,0.407,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2020,0.404,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Croatia,2021,0.401,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2013,2.644,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2014,2.644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2015,2.644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2016,2.644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2017,2.644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2018,2.644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2019,2.644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2020,2.644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cuba,2021,2.644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2010,0.14,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2011,0.155,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2012,0.155,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2013,0.14,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2014,0.135,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2015,0.15,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2016,0.155,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2017,0.155,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2018,0.155,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2019,0.135,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2020,0.135,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Cyprus,2021,0.135,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2010,0.3773,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2011,0.3782,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2012,0.3794,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2013,0.3713,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2014,0.361,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2015,0.3664,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2016,0.3628,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2017,0.3694,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2018,0.37,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2019,0.359,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2020,0.355,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Czech Republic,2021,0.362,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2010,0.6861,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2011,0.6826,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2012,0.6217,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2013,0.7608,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2014,0.7798,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2015,0.6393,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2016,0.68201,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2017,0.673684,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2018,0.866718,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2019,0.722554,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2020,0.76397,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Denmark,2021,0.76397,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2010,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2011,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2012,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2013,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2014,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2015,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2016,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2017,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2018,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2019,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2020,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Djibouti,2021,0.018,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2010,0.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominica,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2010,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2011,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2012,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2013,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2014,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2015,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2016,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2017,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2018,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2019,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2020,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Dominican Republic,2021,0.386,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2010,8.045,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2011,6.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2012,7.5,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2013,7.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2014,6.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2015,6.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2016,6.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2017,6.5,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2018,6.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2019,6.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2020,6.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Egypt,2021,6.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2010,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2011,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2012,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2013,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2014,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2015,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2016,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2017,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2018,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2019,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2020,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,El Salvador,2021,0.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2010,0.2972,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2011,0.2988,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2012,0.2735,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2013,0.2128,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2014,0.1987,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2015,0.2012,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2016,0.2214,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2017,0.2469,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2018,0.21358,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2019,0.22909,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2020,0.221590732,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Estonia,2021,0.233174935,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2010,0.195413106,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2011,0.178266382,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2012,0.161119659,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2013,0.143972935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2014,0.126826212,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2015,0.109679488,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2016,0.092532764,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2017,0.092532764,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2018,0.112648583,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2019,0.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2020,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Finland,2021,0.2,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2010,5.220980769,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2011,5.507442308,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2012,5.126894231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2013,4.961375,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2014,4.986951923,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2015,5.759,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2016,5.506,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2017,5.683,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2018,5.768174961,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2019,5.727739684,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2020,5.885073903,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,France,2021,5.885073903,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2010,0.584520762,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2011,0.567082302,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2012,0.549643842,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2013,0.532205381,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2014,0.514766921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2015,0.49732846,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2016,0.47989,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2017,0.48919,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2018,0.4874,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2019,0.486,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2020,0.51181,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Georgia,2021,0.50683,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2010,5.841,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2011,6.448594662,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2012,5.957168639,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2013,5.916,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2014,7.31338041,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2015,6.968902471,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2016,5.963,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2017,6.769370906,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2018,6.567553984,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2019,6.292234544,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2020,6.292234544,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Germany,2021,6.292234544,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2010,5.113022076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2011,5.615,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2012,5.615,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2013,5.614,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2014,5.61,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2015,5.611,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2016,6.232,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2017,6.233,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2018,6.225,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2019,6.228,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2020,6.223,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Greece,2021,6.224,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2010,0.000555556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2011,0.000666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2012,0.000777778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2013,0.000888889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2014,0.001,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2015,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2016,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2017,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2018,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2019,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2020,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Grenada,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2010,0.069938461,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2011,0.072446154,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2012,0.074953846,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2013,0.077461538,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2014,0.079969231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2015,0.082476923,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2016,0.084984615,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2017,0.087492308,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2018,0.09,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2019,0.09,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2020,0.09,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea,2021,0.09,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2010,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2011,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2012,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2013,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2014,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2015,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2016,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2017,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2018,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2019,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2020,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Guinea Bissau,2021,0.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2010,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2011,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2012,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2013,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2014,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2015,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2016,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2017,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2018,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2019,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2020,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Honduras,2021,0.164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2010,0.5352,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2011,0.5351,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2012,0.535,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2013,0.496,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2014,0.476,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2015,0.492,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2016,0.486,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2017,0.582905,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2018,0.514285,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2019,0.606881,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2020,0.8152,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Hungary,2021,0.8152,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2010,0.25315,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2011,0.268675,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2012,0.2842,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2013,0.272,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2014,0.2638,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2015,0.2606,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2016,0.22,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2017,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2018,0.25,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2019,0.25,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2020,0.25,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iceland,2021,0.25,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2010,251.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2011,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2012,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2013,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2014,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2015,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2016,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2017,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2018,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2019,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2020,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,India,2021,251.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2010,28.236807904,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2011,29.299488694,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2012,30.362169484,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2013,31.424850275,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2014,32.487531065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2015,33.550211856,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2016,34.612892646,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2017,34.612892646,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2018,34.612892646,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2019,34.612892646,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2020,34.612892646,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Indonesia,2021,34.612892646,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2010,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2011,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2012,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2013,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2014,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2015,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2016,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2017,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2018,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2019,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2020,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Iran,2021,53.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2010,0.209777778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2011,0.223555556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2012,0.237333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2013,0.251111111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2014,0.264888889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2015,0.278666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2016,0.292444444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2017,0.306222222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2018,0.32,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2019,0.234,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2020,0.237,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ireland,2021,0.258,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2010,0.836,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2011,0.8216,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2012,0.8072,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2013,0.7928,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2014,0.7784,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2015,0.764,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2016,0.868,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2017,0.862,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2018,0.769,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2019,0.78,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2020,0.705,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Israel,2021,0.927,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2010,0.486380952,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2011,0.464785714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2012,0.443190476,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2013,0.421595238,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2014,0.4,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2015,0.21,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2016,0.14,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2017,0.210219332,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2018,0.280438664,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2019,0.350657996,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2020,0.350070328,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jamaica,2021,0.324191352,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2010,9.304571429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2011,9.237142857,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2012,9.169714286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2013,9.102285714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2014,9.034857143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2015,8.967428571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2016,8.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2017,8.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2018,8.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2019,8.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2020,8.6,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Japan,2021,8.6,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2010,0.570418956,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2011,0.5169,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2012,0.551316709,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2013,0.585084045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2014,0.6958,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2015,0.5942,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2016,0.6148,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2017,0.6188,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2018,0.6249,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2019,0.6014,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2020,0.59364,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Jordan,2021,0.61862,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2010,1.186,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2011,1.137,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2012,1.133,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2013,1.075,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2014,1.052,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2015,1.056,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2016,1.051,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2017,1.032,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2018,1.02,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2019,1.055,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2020,0.999,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kazakhstan,2021,0.999,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kenya,2016,0.525,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kenya,2017,0.525,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kenya,2018,0.525,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kenya,2019,0.525,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kenya,2020,0.525,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kenya,2021,0.525,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2010,0.577953846,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2011,0.598323077,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2012,0.618692308,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2013,0.639061539,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2014,0.659430769,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2015,0.6798,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2016,0.715,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2017,0.7701,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2018,0.7701,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2019,0.7701,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2020,0.7701,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kuwait,2021,0.7701,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2010,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2011,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2012,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2013,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2014,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2015,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2016,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2017,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2018,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2019,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2020,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Kyrgyzstan,2021,0.306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2010,0.1701,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2011,0.2728,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2012,0.1507,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2013,0.1479,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2014,0.0835,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2015,0.0806,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2016,0.081232234,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2017,0.083484731,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2018,0.086531,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2019,0.084969,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2020,0.084128,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Latvia,2021,0.084128,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2010,0.928649635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2011,0.974379562,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2012,1.020109489,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2013,1.065839416,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2014,1.111569343,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2015,1.15729927,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2016,1.15729927,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2017,1.15729927,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2018,1.15729927,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2019,1.15729927,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2020,1.15729927,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lebanon,2021,1.15729927,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2010,5.343,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2011,5.4465,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2012,5.55,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2013,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2014,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2015,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2016,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2017,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2018,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2019,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2020,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Libya,2021,5.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2010,0.1748,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2011,0.1746,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2012,0.163366667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2013,0.152133333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2014,0.1409,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2015,0.14,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2016,0.1409,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2017,0.1404,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2018,0.14715,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2019,0.14715,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2020,0.14715,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Lithuania,2021,0.14715,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2010,0.0233,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2011,0.0224,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2012,0.0209,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2013,0.0251,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2014,0.0267,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2015,0.0254,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2016,0.0229,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2017,0.0229,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2018,0.0279,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2019,0.023,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2020,0.0233,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Luxembourg,2021,0.0233,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2010,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2011,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2012,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2013,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2014,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2015,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2016,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2017,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2018,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2019,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2020,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Madagascar,2021,0.024,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2010,0.11128421,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2011,0.107447368,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2012,0.103610526,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2013,0.099773684,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2014,0.095936842,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2015,0.0921,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2016,0.0871,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2017,0.0897,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2018,0.0897,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2019,0.0897,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2020,0.0897,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malaysia,2021,0.0897,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Maldives,2019,0.00011429,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Maldives,2020,0.000193967,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Maldives,2021,0.000273644,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2010,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2011,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2012,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2013,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2014,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2015,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2016,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2017,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2018,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2019,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2020,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mali,2021,0.061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2010,0.0409,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2011,0.0381,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2012,0.017,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2013,0.0224,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2014,0.0424,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2015,0.0391,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2016,0.0392,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2017,0.043,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2018,0.040114542,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2019,0.03777241,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2020,0.038245259,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Malta,2021,0.036570058,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2010,0.124,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2011,0.122,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2012,0.122,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2013,0.121,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2014,0.131,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2015,0.145,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2016,0.147,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2017,0.142,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2018,0.15,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2019,0.153,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2020,0.15,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mauritius,2021,0.153,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2010,30.045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2011,29.99,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2012,31.78,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2013,30.37,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2014,32.91,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2015,33.31,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2016,33.819,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2017,34.39,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2018,34.839,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2019,35.102,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2020,35.315,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mexico,2021,35.601,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2010,0.435425247,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2011,0.41882642,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2012,0.402227593,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2013,0.385628765,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2014,0.369029938,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2015,0.352431111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2016,0.379339259,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2017,0.379339259,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2018,0.379339259,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2019,0.379339259,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2020,0.379339259,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Mongolia,2021,0.379339259,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2010,2.322,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2011,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2012,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2013,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2014,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2015,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2016,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2017,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2018,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2019,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2020,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Morocco,2021,2.322,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2010,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2011,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2012,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2013,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2014,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2015,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2016,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2017,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2018,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2019,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2020,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Myanmar,2021,2.991,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2010,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2011,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2012,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2013,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2014,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2015,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2016,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2017,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2018,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2019,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2020,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Namibia,2021,0.1253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2010,0.9971,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2011,0.9891,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2012,0.9403,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2013,0.992,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2014,1.019,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2015,0.9926,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2016,0.9834,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2017,1.0147,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2018,1.1878,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2019,1.1437,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2020,1.171,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Netherlands,2021,0.9903,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2010,1.674,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2011,1.8965,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2012,2.119,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2013,2.3415,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2014,2.564,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2015,2.564,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2016,2.564,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2017,2.564,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2018,2.564,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2019,2.564,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2020,2.564,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,New Zealand,2021,2.564,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2010,1.174727556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2011,1.228690667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2012,1.282653778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2013,1.336616889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2014,1.39058,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2015,1.58378,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2016,1.607424,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2017,1.45478588,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2018,2.23699012,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2019,2.376643176,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2020,2.376643176,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Niger,2021,2.376643176,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2010,0.140720944,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2011,0.119341887,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2012,0.097962831,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2013,0.076583774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2014,0.104920132,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2015,0.13325649,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2016,0.161592847,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2017,0.085251424,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2018,0.00891,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2019,0.00913,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2020,0.00913,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Macedonia,2021,0.00913,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2010,1.4282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2011,1.4628,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2012,1.4974,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2013,1.532,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2014,1.532,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2015,1.532,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2016,1.532,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2017,1.532,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2018,1.532,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2019,1.532,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2020,1.532,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Oman,2021,1.532,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2010,59.58,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2011,59.58,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2012,59.58,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2013,61.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2014,61.67,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2015,59.21,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2016,65.37,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2017,61.67,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2018,64.14,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2019,62.91,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2020,61.43,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Pakistan,2021,61.33,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2010,0.244,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2011,0.2455,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2012,0.2533,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2013,0.2629,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2014,0.2463,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2015,0.2505,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2016,0.2516,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2017,0.2645,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2018,0.2742,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2019,0.289,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2020,0.2991,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Palestine,2021,0.2978,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2011,0.444,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2012,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2013,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2014,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2015,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2016,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2017,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2018,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2019,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2020,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Paraguay,2021,0.444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2010,2.383583038,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2011,2.692874558,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2012,3.002166077,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2013,3.311457596,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2014,3.620749115,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2015,3.930040634,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2016,4.239332153,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2017,4.548623673,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2018,4.857915192,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2019,1.29,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2020,1.29,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Peru,2021,1.29,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2010,3.273495978,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2011,3.304393962,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2012,3.31182363,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2013,3.319646403,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2014,3.822,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2015,4.487,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2016,4.655,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2017,4.03506,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2018,4.071317174,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2019,4.261571782,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2020,5.017107412,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Philippines,2021,5.117605626,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2010,1.625,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2011,2.733,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2012,2.644,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2013,2.608,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2014,1.619,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2015,1.676,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2016,1.688,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2017,1.673,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2018,1.773,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2019,1.772069,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2020,1.766,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Poland,2021,1.782,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2010,4.123366667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2011,3.899822222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2012,3.676277778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2013,3.452733333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2014,3.229188889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2015,3.005644444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2016,2.7821,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2017,1.931,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2018,1.92007,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2019,1.92007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2020,1.92007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Portugal,2021,1.92007,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2010,0.1727,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2011,0.16656,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2012,0.16042,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2013,0.15428,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2014,0.14814,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2015,0.142,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2016,0.142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2017,0.142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2018,0.142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2019,0.142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2020,0.142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Puerto Rico,2021,0.142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2010,0.23775,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2011,0.2419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2012,0.24605,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2013,0.2502,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2014,0.2521,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2015,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2016,0.2508,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2017,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2018,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2019,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2020,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Qatar,2021,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2010,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2011,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2012,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2013,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2014,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2015,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2016,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2017,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2018,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2019,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2020,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Korea,2021,3.717,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2010,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2011,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2012,0.129,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2013,0.128,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2014,0.127,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2015,0.128,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2016,0.126,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2017,0.127,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2018,0.128,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2019,0.129,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2020,0.13,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Moldova,2021,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2010,0.624,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2011,0.6,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2012,0.598,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2013,0.581,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2014,0.554,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2015,0.59,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2016,0.635,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2017,0.647,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2018,0.679,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2019,0.707,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2020,0.795,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Romania,2021,0.806,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Russia,2014,10.53,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Russia,2015,10.12,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Russia,2016,12.48,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Russia,2017,12.36,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Russia,2018,12.38,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Russia,2019,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Russia,2020,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Russia,2021,12.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Rwanda,2019,0.115,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Rwanda,2020,0.115,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Rwanda,2021,0.115,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2012,0.0076,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2013,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2014,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2015,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2016,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2017,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2018,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2019,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2020,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Kitts and Nevis,2021,0.0076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2013,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saint Vincent and the Grenadines,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2010,21.445,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2011,21.42125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2012,21.3975,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2013,21.37375,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2014,21.35,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2015,22.65,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2016,21.59,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2017,22.382,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2018,22.455,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2019,22.455,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2020,22.455,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Saudi Arabia,2021,22.455,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Senegal,2017,0.1742,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Senegal,2018,0.1784,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Senegal,2019,0.2142,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Senegal,2020,0.2142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Senegal,2021,0.2142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2010,0.5134,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2011,0.5027,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2012,0.507,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2013,0.478,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2014,0.4571,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2015,0.4813,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2016,0.4414,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2017,0.46,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2018,0.4963,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2019,0.485,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2020,0.485,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Serbia,2021,0.508,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2010,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2011,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2012,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2013,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2014,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2015,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2016,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2017,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2018,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2019,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2020,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Seychelles,2021,0.000284723,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2010,0.3412,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2011,0.3344,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2012,0.3389,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2013,0.3292,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2014,0.3213,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2015,0.3049,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2016,0.303,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2017,0.3122,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2018,0.3161,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2019,0.3161,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2020,0.3141,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovakia,2021,0.3227,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2010,0.1852,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2011,0.1847,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2012,0.1796,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2013,0.1811,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2014,0.187,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2015,0.185,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2016,0.1814,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2017,0.19,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2018,0.193,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2019,0.189,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2020,0.185,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Slovenia,2021,0.191,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2010,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2011,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2012,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2013,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2014,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2015,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2016,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2017,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2018,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2019,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2020,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Somalia,2021,0.131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2010,1.77,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2011,1.902,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2012,2.034,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2013,2.166,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2014,2.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2015,2.43,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2016,2.52,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2017,2.62,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2018,2.78,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2019,3.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2020,2.89,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,South Africa,2021,3.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2010,6.601,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2011,6.143,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2012,6.496,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2013,6.109,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2014,6.289,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2015,6.334,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2016,6.394,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2017,6.15,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2018,5.907,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2019,6.16,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2020,6.413,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Spain,2021,6.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2010,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2011,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2012,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2013,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2014,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2015,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2016,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2017,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2018,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2019,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2020,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Suriname,2021,0.0493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2010,0.348,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2011,0.3514,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2012,0.3548,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2013,0.3582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2014,0.3616,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2015,0.365,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2016,0.3708,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2017,0.3766,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2018,0.3824,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2019,0.3882,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2020,0.394,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Sweden,2021,0.394,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2010,0.977260764,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2011,0.991130382,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2012,1.005,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2013,0.8643,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2014,0.85626,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2015,0.85529887,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2016,0.85433774,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2017,0.85433774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2018,0.85433774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2019,0.85433774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2020,0.85433774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Switzerland,2021,0.85433774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2010,1.457356713,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2011,1.27264537,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2012,1.087934028,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2013,0.903222685,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2014,0.718511343,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2015,0.5338,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2016,0.448205935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2017,0.409220369,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2018,0.50071606,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2019,0.543133995,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2020,0.543133995,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tajikistan,2021,0.543133995,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2010,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2011,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2012,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2013,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2014,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2015,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2016,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2017,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2018,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2019,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2020,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Thailand,2021,9.827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2011,0.1078,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2012,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2013,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2014,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2015,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2016,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2017,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2018,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2019,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2020,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Trinidad and Tobago,2021,0.1078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2010,2.042333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2011,2.066,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2012,2.2124,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2013,2.3588,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2014,2.5052,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2015,2.6516,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2016,2.798,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2017,2.691,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2018,2.73472,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2019,2.747,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2020,2.818,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Tunisia,2021,2.818,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2010,0.306106384,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2011,0.30638298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2012,0.306659576,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2013,0.306936173,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2014,0.307212769,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2015,0.307489365,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2016,0.307765961,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2017,0.315849309,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2018,0.294218554,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2019,0.30328263,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2020,0.2141,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkmenistan,2021,0.2141,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2010,13.14,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2011,13.35,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2012,13.56,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2013,14.08,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2014,14.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2015,14.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2016,15.06,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2017,15.46,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2018,16.18,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2019,16.62,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2020,17.03,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Turkey,2021,17.642,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2010,2.97,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2011,2.60325,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2012,2.2365,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2013,1.86975,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2014,1.503,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2015,1.286,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2016,1.27,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2017,1.165,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2018,1.165,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2019,1.157,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2020,0.972,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Ukraine,2021,0.972,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2010,2.672272727,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2011,2.646727273,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2012,2.621181818,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2013,2.595636364,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2014,2.570090909,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2015,2.544545455,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2016,2.519,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2017,2.445,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2018,2.501,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2019,2.443,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2020,2.381,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Arab Emirates,2021,2.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2010,2.152,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2011,2.159,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2012,2.046,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2013,2.0495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2014,2.053,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2015,2.034,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2016,2.039,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2017,2.039,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2018,2.039,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2019,2.039,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2020,2.039,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United Kingdom,2021,2.039,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2010,104.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2011,106.182250298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2012,107.464500597,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2013,108.746750896,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2014,110.029001194,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2015,111.311251493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2016,111.311251493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2017,111.311251493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2018,111.311251493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2019,111.311251493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2020,111.311251493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,United States of America,2021,111.311251493,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2010,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2011,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2012,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2013,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2014,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2015,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2016,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2017,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2018,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2019,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2020,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uruguay,2021,0.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2010,5.073456288,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2011,5.088147545,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2012,5.102838803,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2013,5.117530061,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2014,5.132221318,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2015,0.539,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2016,0.553,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2017,0.494,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2018,0.494,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2019,0.494,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2020,0.48,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Uzbekistan,2021,0.516,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2010,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2011,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2012,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2013,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2014,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2015,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2016,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2017,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2018,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2019,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2020,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Vietnam,2021,1.402,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2010,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2011,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2012,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2013,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2014,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2015,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2016,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2017,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2018,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2019,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2020,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Yemen,2021,2.525208333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2010,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2011,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2012,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2013,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2014,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2015,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2016,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2017,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2018,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2019,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2020,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zambia,2021,0.060288495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2010,0.579372191,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2011,0.653637753,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2012,0.727903315,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2013,0.802168876,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2014,0.876434438,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2015,0.9507,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2016,0.9526,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2017,0.935,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2018,1.055986862,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2019,1.186154024,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2020,1.374710231,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh groundwater withdrawal,Zimbabwe,2021,1.374710231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2010,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2011,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2012,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2013,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2014,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2015,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2016,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2017,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2018,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2019,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2020,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Afghanistan,2021,17.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Albania,2015,0.73,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Albania,2016,0.984,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Albania,2017,0.984,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Albania,2018,0.859,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Albania,2019,0.915,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Albania,2020,0.704,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Albania,2021,0.685,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2012,4.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2013,3.776666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2014,2.753333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2015,1.73,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2016,2.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2017,1.699,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2018,1.699,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2019,1.699,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2020,1.699,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Algeria,2021,1.699,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2012,0.0037,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2013,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2014,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2015,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2016,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2017,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2018,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2019,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2020,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Antigua and Barbuda,2021,0.0037,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2011,26.36,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2012,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2013,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2014,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2015,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2016,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2017,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2018,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2019,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2020,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Argentina,2021,26.36,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2010,1.251,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2011,1.435,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2012,1.627,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2013,1.606,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2014,1.548,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2015,1.967,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2016,2.045,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2017,1.72,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2018,1.522,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2019,1.571,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2020,1.441,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Armenia,2021,1.511,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Australia,2015,7.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Australia,2016,10.043,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Australia,2017,11.48864137,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Australia,2018,11.76,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Australia,2019,9.96,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Australia,2020,8.09,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Australia,2021,10.92,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2010,2.428529733,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2011,2.370693096,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2012,2.312856459,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2013,2.255019822,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2014,2.197183185,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2015,2.139346548,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2016,2.081509911,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2017,2.023673274,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2018,1.965836637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2019,1.908,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2020,1.908,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Austria,2021,1.908,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2010,9.698,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2011,9.79,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2012,10.279,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2013,10.256,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2014,9.773,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2015,9.673,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2016,9.803,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2017,10.054,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2018,10.072,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2019,10.224,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2020,9.80843,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Azerbaijan,2021,10.63264,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2014,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2015,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bahrain,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2010,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2011,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2012,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2013,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2014,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2015,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2016,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2017,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2018,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2019,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2020,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bangladesh,2021,7.39,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2010,0.694,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2011,0.683666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2012,0.673333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2013,0.663,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2014,0.704,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2015,0.603,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2016,0.632,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2017,0.589,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2018,0.581,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2019,0.556,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2020,0.529,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belarus,2021,0.612,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2010,5.341,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2011,4.48,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2012,4.664,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2013,4.19,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2014,3.925,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2015,3.362,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2016,3.566754057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2017,3.771508115,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2018,3.548,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2019,3.589,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2020,3.589,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Belgium,2021,3.589,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2010,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2011,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2012,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2013,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2014,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2015,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2016,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2017,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2018,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2019,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2020,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Benin,2021,0.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2010,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2011,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2012,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2013,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2014,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2015,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2016,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2017,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2018,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2019,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2020,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bhutan,2021,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2010,0.1068,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2011,0.1214,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2012,0.1332,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2013,0.129,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2014,0.1124,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2015,0.1079,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2016,0.1073,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2017,0.1072,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2018,0.1693,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2019,0.1625,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2020,0.163836,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bosnia and Herzegovina,2021,0.166417,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2010,0.094818182,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2011,0.0979,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2012,0.091,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2013,0.08965,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2014,0.0883,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2015,0.0791,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2016,0.089,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2017,0.0761,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2018,0.0828,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2019,0.0956,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2020,0.0801154,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Botswana,2021,0.1259046,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brazil,2014,60.47,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brazil,2015,59.39,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brazil,2016,53.84,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brazil,2017,55.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brazil,2018,49.14,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brazil,2019,57.47,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brazil,2020,57.28,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brazil,2021,59.5,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2010,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2011,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2012,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2013,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2014,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2015,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2016,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2017,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2018,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2019,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2020,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Brunei,2021,0.0915,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2010,5.403,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2011,5.84,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2012,5.149,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2013,4.91,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2014,4.829,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2015,5.071,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2016,5.128,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2017,5.076,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2018,4.859,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2019,4.86,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2020,4.515,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Bulgaria,2021,4.515,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cape Verde,2019,0.0081,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cape Verde,2020,0.0081,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cape Verde,2021,0.0083,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2010,35.549822108,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2011,34.022032172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2012,34.824799223,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2013,35.627566274,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2014,34.886918102,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2015,34.14626993,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2016,34.396178958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2017,34.646087986,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2018,34.646087986,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2019,34.646087986,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2020,34.646087986,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Canada,2021,34.646087986,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2010,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2011,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2012,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2013,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2014,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2015,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2016,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2017,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2018,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2019,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2020,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Chile,2021,32.59,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2010,476.648441358,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2011,484.1,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2012,485.4,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2013,490.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2014,481.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2015,484.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2016,494.912636026,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2017,494.55,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2018,495.27,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2019,498.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2020,479.23,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,China,2021,479.23,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2010,14.37518904,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2011,16.21778356,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2012,18.06037808,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2013,19.9029726,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2014,21.74556712,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2015,23.58816164,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2016,25.43075616,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2017,25.73345426,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2018,26.03615236,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2019,26.67382013,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2020,27.42226896,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Colombia,2021,28.10632864,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2010,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2011,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2012,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2013,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2014,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2015,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2016,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2017,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2018,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2019,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2020,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Republic of Congo,2021,0.022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2012,2.025708,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2013,2.120452,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2014,2.348233,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2015,2.78543,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2016,2.557797,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2017,2.26,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2018,2.69673,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2019,2.74,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2020,2.72726,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Costa Rica,2021,2.96797,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2010,0.217880502,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2011,0.200802118,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2012,0.219449067,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2013,0.19822039,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2014,0.179541606,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2015,0.201572347,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2016,0.202752113,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2017,0.260948723,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2018,0.257243134,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2019,0.265,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2020,0.254,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Croatia,2021,0.264,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2013,4.314,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2014,4.314,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2015,4.314,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2016,4.314,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2017,4.314,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2018,4.314,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2019,4.314,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2020,4.314,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cuba,2021,4.314,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2010,0.0609,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2011,0.0658,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2012,0.1003,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2013,0.0668,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2014,0.082,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2015,0.082,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2016,0.063,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2017,0.061,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2018,0.052,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2019,0.067,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2020,0.096,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Cyprus,2021,0.1,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2010,1.573,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2011,1.508,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2012,1.461,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2013,1.279,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2014,1.289,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2015,1.237,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2016,1.272,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2017,1.261,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2018,1.22,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2019,1.147,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2020,1.011,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Czech Republic,2021,0.987,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2010,0.1228,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2011,0.1831,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2012,0.1068,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2013,0.2485,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2014,0.2094,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2015,0.1725,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2016,0.204985,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2017,0.222114,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2018,0.239099,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2019,0.22304,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2020,0.21246,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Denmark,2021,0.21246,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2010,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2011,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2012,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2013,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2014,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2015,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2016,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2017,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2018,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2019,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2020,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Djibouti,2021,0.001,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2010,0.02,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2011,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2012,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2013,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2014,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2015,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2016,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2017,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2018,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2019,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2020,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Dominica,2021,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2010,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2011,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2012,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2013,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2014,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2015,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2016,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2017,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2018,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2019,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2020,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,El Salvador,2021,1.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2010,1.545,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2011,1.575,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2012,1.357,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2013,1.535,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2014,1.521,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2015,1.41381818,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2016,1.53,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2017,1.538,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2018,1.39497,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2019,0.77736,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2020,0.631361568,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Estonia,2021,0.766574708,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2010,4.661786894,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2011,4.252733618,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2012,3.843680341,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2013,3.434627065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2014,3.025573789,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2015,2.616520512,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2016,2.207467236,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2017,2.207467236,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2018,2.687351417,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2019,2.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2020,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Finland,2021,2.8,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2010,23.357019231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2011,24.638557692,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2012,22.936105769,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2013,22.195625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2014,22.310048077,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2015,22.357,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2016,20.93,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2017,21.263,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2018,21.15474935,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2019,20.48434645,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2020,18.78647807,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,France,2021,18.78647807,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2010,1.179766738,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2011,1.167848948,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2012,1.155931158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2013,1.144013369,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2014,1.132095579,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2015,1.12017779,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2016,1.10826,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2017,0.88534,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2018,0.80372,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2019,1.08614,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2020,1.14191,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Georgia,2021,1.10215,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2010,27.15,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2011,29.974207338,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2012,27.689972361,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2013,19.41,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2014,23.99471159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2015,22.864502529,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2016,18.48,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2017,20.979033094,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2018,20.353580016,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2019,19.500334456,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2020,19.500334456,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Germany,2021,19.500334456,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2010,4.742402924,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2011,4.319,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2012,4.32,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2013,4.31,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2014,4.306,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2015,4.297,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2016,3.904,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2017,3.901,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2018,3.897,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2019,3.887,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2020,3.899,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Greece,2021,4.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2010,0.011722222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2011,0.012066667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2012,0.012411111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2013,0.012755556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2014,0.0131,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2015,0.0131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2016,0.0131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2017,0.0131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2018,0.0131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2019,0.0131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2020,0.0131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Grenada,2021,0.0131,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2010,0.6256,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2011,0.6474,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2012,0.6692,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2013,0.691,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2014,0.7128,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2015,0.7346,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2016,0.7564,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2017,0.7782,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2018,0.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2019,0.8,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2020,0.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea,2021,0.8,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2010,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2011,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2012,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2013,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2014,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2015,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2016,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2017,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2018,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2019,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2020,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Guinea Bissau,2021,0.144,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2010,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2011,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2012,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2013,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2014,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2015,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2016,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2017,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2018,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2019,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2020,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Honduras,2021,1.443,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2010,4.835,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2011,4.69,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2012,4.516,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2013,4.754,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2014,3.447,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2015,3.538,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2016,3.473,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2017,4.153615,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2018,4.404176498,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2019,3.856194,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2020,3.8574,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Hungary,2021,3.8574,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2010,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2011,0.01,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2012,0.0098,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2013,0.0191,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2014,0.0116,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2015,0.0189,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2016,0.04,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2017,0.04,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2018,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2019,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2020,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iceland,2021,0.04,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2010,396.5,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2011,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2012,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2013,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2014,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2015,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2016,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2017,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2018,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2019,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2020,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,India,2021,396.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2010,153.386317096,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2011,159.158948806,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2012,164.931580516,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2013,170.704212225,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2014,176.476843935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2015,182.249475644,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2016,188.022107354,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2017,188.022107354,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2018,188.022107354,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2019,188.022107354,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2020,188.022107354,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Indonesia,2021,188.022107354,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2010,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2011,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2012,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2013,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2014,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2015,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2016,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2017,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2018,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2019,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2020,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iran,2021,39.85,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iraq,2016,41.01,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iraq,2017,43.82,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iraq,2018,35.71,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iraq,2019,35.71,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iraq,2020,35.71,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Iraq,2021,35.71,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2010,0.621666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2011,0.682333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2012,0.743,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2013,0.803666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2014,0.864333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2015,0.925,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2016,0.985666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2017,1.046333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2018,1.107,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2019,1.304,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2020,1.307,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ireland,2021,1.323,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2010,0.504,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2011,0.4794,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2012,0.4548,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2013,0.4302,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2014,0.4056,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2015,0.381,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2016,0.331,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2017,0.339,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2018,0.343,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2019,0.384,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2020,0.571,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Israel,2021,0.603,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2010,0.945047619,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2011,0.996285714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2012,1.047523809,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2013,1.098761905,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2014,1.15,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2015,0.62,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2016,1.21,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2017,1.125767461,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2018,1.041534921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2019,0.957302381,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2020,0.845484876,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jamaica,2021,1.016001135,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2010,71.7,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2011,71.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2012,71.4,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2013,71.25,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2014,71.1,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2015,70.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2016,70.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2017,70.5,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2018,70.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2019,69.8,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2020,69.8,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Japan,2021,69.8,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2010,0.322581044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2011,0.2791,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2012,0.297683292,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2013,0.315915955,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2014,0.274,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2015,0.274,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2016,0.2888,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2017,0.2881,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2018,0.2981,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2019,0.34044,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2020,0.36388,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Jordan,2021,0.307,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2010,20.81,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2011,20.26,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2012,21.46,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2013,22.03,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2014,22.03,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2015,20.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2016,20.58,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2017,21.42,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2018,22.522,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2019,22.461,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2020,23.586,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kazakhstan,2021,23.586,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kenya,2016,3.507,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kenya,2017,3.507,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kenya,2018,3.507,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kenya,2019,3.507,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kenya,2020,3.507,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kenya,2021,3.507,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2016,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2017,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2018,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kuwait,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2010,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2011,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2012,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2013,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2014,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2015,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2016,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2017,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2018,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2019,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2020,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Kyrgyzstan,2021,7.401,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2010,0.1051,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2011,0.0963,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2012,0.0975,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2013,0.0879,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2014,0.085,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2015,0.0961,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2016,0.1046,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2017,0.0976,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2018,0.096819,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2019,0.09367,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2020,0.097083,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Latvia,2021,0.097083,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2010,0.525350365,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2011,0.551220438,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2012,0.577090511,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2013,0.602960584,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2014,0.628830657,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2015,0.65470073,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2016,0.65470073,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2017,0.65470073,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2018,0.65470073,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2019,0.65470073,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2020,0.65470073,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lebanon,2021,0.65470073,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2010,0.138857143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2011,0.154428571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2012,0.17,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2013,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2014,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2015,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2016,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2017,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2018,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2019,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2020,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Libya,2021,0.17,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2010,0.8611,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2011,0.4518,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2012,0.373433333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2013,0.295066667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2014,0.2167,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2015,0.2418,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2016,0.167,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2017,0.1186,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2018,0.10725,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2019,0.10725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2020,0.10725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Lithuania,2021,0.10725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2010,0.0243,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2011,0.0239,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2012,0.0237,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2013,0.018,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2014,0.0193,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2015,0.0195,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2016,0.0215,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2017,0.0227,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2018,0.0243,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2019,0.0263,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2020,0.0245,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Luxembourg,2021,0.0245,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2010,5.919526316,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2011,5.962421053,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2012,6.00531579,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2013,6.048210526,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2014,6.091105263,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2015,6.134,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2016,6.465,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2017,6.617,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2018,6.617,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2019,6.617,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2020,6.617,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malaysia,2021,6.617,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2010,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2011,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2012,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2013,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2014,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2015,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2016,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2017,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2018,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2019,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2020,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mali,2021,5.125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2010,0.00208,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2011,0.00234,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2012,0.0026,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2013,0.0026,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2014,0.0026,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2015,0.0026,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2016,0.0026,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2017,0.003,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2018,0.002620075,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2019,0.002961378,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2020,0.002961378,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Malta,2021,0.002961378,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2010,0.513,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2011,0.449,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2012,0.46,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2013,0.487,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2014,0.489,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2015,0.467,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2016,0.473,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2017,0.468,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2018,0.441,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2019,0.442,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2020,0.457,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mauritius,2021,0.451,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2010,49.585,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2011,49.49,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2012,50.95,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2013,51.28,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2014,52.02,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2015,52.35,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2016,52.758,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2017,53.45,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2018,54.001,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2019,54.249,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2020,54.233,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mexico,2021,54.343,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2010,0.09534142,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2011,0.091706914,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2012,0.088072407,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2013,0.084437901,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2014,0.080803395,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2015,0.077168889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2016,0.083060741,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2017,0.083060741,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2018,0.083060741,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2019,0.083060741,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2020,0.083060741,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Mongolia,2021,0.083060741,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2010,8.251,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2011,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2012,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2013,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2014,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2015,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2016,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2017,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2018,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2019,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2020,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Morocco,2021,8.251,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2010,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2011,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2012,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2013,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2014,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2015,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2016,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2017,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2018,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2019,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2020,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Myanmar,2021,30.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2010,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2011,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2012,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2013,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2014,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2015,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2016,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2017,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2018,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2019,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2020,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Namibia,2021,0.1566,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2010,9.919,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2011,9.199,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2012,9.776,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2013,9.647,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2014,8.471,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2015,7.418,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2016,7.04,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2017,6.9015,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2018,6.9024,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2019,7.2597,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2020,7.135,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Netherlands,2021,6.9559,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2010,3.527,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2011,4.473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2012,5.419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2013,6.365,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2014,7.311,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2015,7.311,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2016,7.311,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2017,7.311,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2018,7.311,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2019,7.311,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2020,7.311,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,New Zealand,2021,7.311,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2010,0.102150222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2011,0.106842667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2012,0.111535111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2013,0.116227556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2014,0.12092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2015,0.13772,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2016,0.139776,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2017,0.12650312,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2018,0.19452088,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2019,0.206664624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2020,0.206664624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Niger,2021,0.206664624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2010,0.768279056,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2011,0.651558113,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2012,0.534837169,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2013,0.418116226,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2014,0.572821201,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2015,0.727526177,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2016,0.882231153,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2017,1.513515576,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2018,2.1448,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2019,1.59005,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2020,1.574905,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Macedonia,2021,1.55976,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2010,0.0714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2011,0.0816,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2012,0.0918,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2013,0.102,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2014,0.102,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2015,0.102,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2016,0.102,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2017,0.102,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2018,0.102,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2019,0.102,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2020,0.102,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Oman,2021,0.102,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2010,125.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2011,119.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2012,128.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2013,121.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2014,133.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2015,137.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2016,134.4,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2017,138.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2018,128.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2019,114.2,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2020,128.16,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Pakistan,2021,202.86,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2010,0.0268,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2011,0.0214,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2012,0.0393,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2013,0.0395,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2014,0.0282,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2015,0.0407,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2016,0.029,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2017,0.0235,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2018,0.0255,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2019,0.0406,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2020,0.0533,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Palestine,2021,0.037,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2012,1.969,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2013,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2014,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2015,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2016,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2017,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2018,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2019,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2020,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Paraguay,2021,1.969,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2010,15.935569321,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2011,18.003353982,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2012,20.071138643,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2013,22.138923304,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2014,24.206707965,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2015,26.274492625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2016,28.342277286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2017,30.410061947,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2018,32.477846608,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2019,37.26,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2020,37.26,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Peru,2021,37.26,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2010,79.999504022,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2011,80.754606038,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2012,80.93617637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2013,81.127353598,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2014,80.61,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2015,81.91,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2016,82.46,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2017,87.75622,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2018,88.08649361,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2019,81.7329422,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2020,82.46016176,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Philippines,2021,83.88275791,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2010,9.241,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2011,9.178,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2012,8.824,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2013,8.634,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2014,9.012,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2015,8.772,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2016,8.601,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2017,8.407,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2018,7.825,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2019,7.21191,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2020,6.901,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Poland,2021,7.485,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2010,4.8225,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2011,4.979333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2012,5.136166667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2013,5.293,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2014,5.449833333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2015,5.606666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2016,5.7635,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2017,4.23047,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2018,4.20946,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2019,4.20946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2020,4.20946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Portugal,2021,4.20946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2010,0.844,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2011,0.8218,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2012,0.7996,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2013,0.7774,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2014,0.7552,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2015,0.733,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2016,0.733,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2017,0.733,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2018,0.733,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2019,0.733,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2020,0.733,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Puerto Rico,2021,0.733,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2014,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2019,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2020,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Qatar,2021,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2010,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2011,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2012,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2013,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2014,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2015,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2016,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2017,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2018,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2019,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2020,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Korea,2021,25.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2010,0.721,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2011,0.717,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2012,0.721,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2013,0.711,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2014,0.709,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2015,0.712,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2016,0.716,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2017,0.713,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2018,0.709,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2019,0.71,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2020,0.716,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Moldova,2021,0.716,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2010,5.595,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2011,5.992,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2012,5.884,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2013,5.837,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2014,5.728,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2015,5.875,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2016,5.739,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2017,6.126,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2018,5.737,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2019,6.286,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2020,6.601,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Romania,2021,7.058,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Russia,2014,60.28,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Russia,2015,52.32,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Russia,2016,52.31,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Russia,2017,52.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Russia,2018,52.44,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Russia,2019,52.44,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Russia,2020,52.44,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Russia,2021,52.44,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Rwanda,2019,0.495,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Rwanda,2020,0.495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Rwanda,2021,0.495,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2012,0.0046,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2013,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2014,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2015,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2016,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2017,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2018,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2019,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2020,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Kitts and Nevis,2021,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2010,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2011,0.0083,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2012,0.0081,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2013,0.0079,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2014,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2015,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2016,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2017,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2018,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2019,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2020,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saint Vincent and the Grenadines,2021,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2010,0.503333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2011,0.354166667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2012,0.205,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2013,0.088,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2014,0.123,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2015,0.123,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2016,0.72,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2017,0.561,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2018,0.925,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2019,0.925,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2020,0.925,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Saudi Arabia,2021,0.925,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Senegal,2017,2.30040652,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Senegal,2018,2.8474,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Senegal,2019,2.8474,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Senegal,2020,2.8474,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Senegal,2021,2.8474,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2010,3.905,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2011,4.247,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2012,3.896,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2013,4.231,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2014,3.478,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2015,4.208,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2016,4.265,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2017,4.917,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2018,5.0612,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2019,5.133,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2020,4.83,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Serbia,2021,4.543,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2010,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2011,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2012,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2013,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2014,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2015,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2016,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2017,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2018,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2019,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2020,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Seychelles,2021,0.011009277,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2010,0.2595,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2011,0.2587,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2012,0.3264,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2013,0.3082,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2014,0.2381,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2015,0.2478,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2016,0.232,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2017,0.2441,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2018,0.2404,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2019,0.2425,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2020,0.2409,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovakia,2021,0.2435731,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2010,0.7403,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2011,0.6656,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2012,0.7484,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2013,0.9745,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2014,0.7933,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2015,0.7122,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2016,0.7059,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2017,0.7414,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2018,0.768,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2019,0.755,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2020,0.818,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Slovenia,2021,0.74,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2010,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2011,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2012,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2013,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2014,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2015,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2016,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2017,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2018,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2019,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2020,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Somalia,2021,3.167,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2013,12.12,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2014,14.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2015,16.23,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2016,16.52,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2017,16.76,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2018,16.86,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2019,16.95,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2020,17.42,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,South Africa,2021,17.59,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2010,28.41,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2011,28.93,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2012,29.87,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2013,26.24,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2014,26.57,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2015,25.18,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2016,24.827,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2017,23.944,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2018,23.502,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2019,23.0545,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2020,22.607,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Spain,2021,22.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2010,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2011,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2012,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2013,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2014,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2015,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2016,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2017,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2018,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2019,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2020,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Suriname,2021,0.5666,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2010,2.341,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2011,2.2748,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2012,2.2086,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2013,2.1424,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2014,2.0762,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2015,2.01,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2016,2.0258,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2017,2.0416,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2018,2.0574,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2019,2.0732,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2020,2.089,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Sweden,2021,2.089,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2010,1.129939236,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2011,1.064719618,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2012,0.9995,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2013,0.85957,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2014,0.851574,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2015,0.85061813,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2016,0.84966226,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2017,0.84966226,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2018,0.84966226,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2019,0.84966226,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2020,0.84966226,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Switzerland,2021,0.84966226,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2010,9.392998843,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2011,9.491599074,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2012,9.590199306,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2013,9.688799537,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2014,9.787399769,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2015,9.886,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2016,8.300794065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2017,7.578779631,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2018,9.27328394,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2019,10.058866005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2020,10.058866005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tajikistan,2021,10.058866005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2010,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2011,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2012,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2013,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2014,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2015,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2016,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2017,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2018,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2019,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2020,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Thailand,2021,47.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2011,0.2284,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2012,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2013,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2014,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2015,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2016,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2017,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2018,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2019,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2020,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Trinidad and Tobago,2021,0.2284,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2010,1.073666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2011,1.151,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2012,1.1064,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2013,1.0618,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2014,1.0172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2015,0.9726,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2016,0.928,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2017,0.835,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2018,1.046,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2019,1.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2020,1.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Tunisia,2021,1.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2010,27.659973616,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2011,27.68496702,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2012,27.709960424,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2013,27.734953827,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2014,27.759947231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2015,27.784940635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2016,27.809934039,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2017,28.540350691,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2018,26.585781446,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2019,27.40481737,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2020,26.031,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkmenistan,2021,26.031,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2010,33.82,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2011,35.385,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2012,36.95,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2013,37.16,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2014,37.37,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2015,39.11,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2016,44.55,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2017,43.328985,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2018,44.91358,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2019,45.68965,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2020,46.46572,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Turkey,2021,40.758,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2010,11.88,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2011,11.259,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2012,10.638,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2013,10.017,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2014,9.396,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2015,7.823,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2016,8.055,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2017,9.54,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2018,9.54,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2019,9.439,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2020,8.487,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Ukraine,2021,8.487,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2010,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2011,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2012,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2013,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2014,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2015,0.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2016,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2017,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2018,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2019,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2020,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Arab Emirates,2021,0.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2010,6.111,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2011,5.526,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2012,5.971,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2013,5.6015,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2014,5.232,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2015,6.126,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2016,6.38,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2017,6.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2018,6.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2019,6.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2020,6.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United Kingdom,2021,6.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2010,313.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2011,317.736972056,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2012,321.573944113,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2013,325.410916169,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2014,329.247888225,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2015,333.084860282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2016,333.084860282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2017,333.084860282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2018,333.084860282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2019,333.084860282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2020,333.084860282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,United States of America,2021,333.084860282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2010,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2011,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2012,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2013,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2014,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2015,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2016,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2017,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2018,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2019,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2020,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uruguay,2021,3.52,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2010,44.808765934,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2011,44.938519121,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2012,45.068272308,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2013,45.198025495,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2014,45.327778682,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2015,54.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2016,54.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2017,58.41,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2018,55.432,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2019,52.454,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2020,49.475,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Uzbekistan,2021,41.968,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2010,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2011,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2012,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2013,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2014,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2015,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2016,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2017,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2018,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2019,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2020,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Vietnam,2021,80.46,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2010,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2011,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2012,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2013,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2014,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2015,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2016,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2017,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2018,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2019,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2020,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Yemen,2021,1.039791667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2010,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2011,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2012,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2013,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2014,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2015,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2016,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2017,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2018,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2019,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2020,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zambia,2021,1.511711505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2010,2.925265309,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2011,2.829212247,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2012,2.733159185,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2013,2.637106124,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2014,2.541053062,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2015,2.445,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2016,2.449,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2017,2.404,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2018,2.715394789,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2019,3.050110348,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2020,3.534969165,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Fresh surface water withdrawal,Zimbabwe,2021,3.534969165,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2010,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2011,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2012,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2013,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2014,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2015,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2016,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2017,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2018,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2019,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2020,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Afghanistan,2021,20.282,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2010,1.1737,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2011,1.14902,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2012,1.12434,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2013,1.09966,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2014,1.07498,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2015,0.92,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2016,1.092,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2017,1.091,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2018,0.958,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2019,1.131,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2020,0.786,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Albania,2021,0.796,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2010,7.456721212,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2011,7.633360606,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2012,7.8,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2013,8.184666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2014,8.569333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2015,8.954,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2016,9.23,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2017,9.802,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2018,9.802,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2019,9.802,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2020,9.802,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Algeria,2021,9.802,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2010,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2011,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2012,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2013,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2014,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2015,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2016,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2017,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2018,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2019,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2020,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Angola,2021,0.7057,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2010,0.0046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2011,0.0045,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2012,0.0044,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2013,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2014,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2015,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2016,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2017,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2018,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2019,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2020,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Antigua and Barbuda,2021,0.0044,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2010,37.022702273,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2011,37.69,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2012,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2013,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2014,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2015,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2016,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2017,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2018,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2019,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2020,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Argentina,2021,37.69,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2010,2.126,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2011,2.438,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2012,2.941,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2013,2.955,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2014,2.86,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2015,3.272,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2016,3.182,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2017,2.865,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2018,2.714,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2019,2.865,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2020,2.83,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Armenia,2021,2.967,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2010,13.175,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2011,13.215,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2012,15.868,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2013,19.148,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2014,18.463,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2015,9.22,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2016,10.623,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2017,12.05864137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2018,12.33,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2019,10.56,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2020,8.67,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Australia,2021,11.44,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2010,3.49,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2011,3.451111111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2012,3.412222222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2013,3.373333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2014,3.334444444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2015,3.295555556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2016,3.256666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2017,3.217777778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2018,3.178888889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2019,3.14,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2020,3.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Austria,2021,3.14,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2010,10.97,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2011,11.296,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2012,11.975,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2013,11.994,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2014,11.592,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2015,11.689,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2016,11.878,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2017,12.12,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2018,12.167,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2019,12.59,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2020,12.20308,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Azerbaijan,2021,12.96786,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2010,0.200772727,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2011,0.195354546,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2012,0.189936364,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2013,0.184518182,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2014,0.1791,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2015,0.1591,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2016,0.1551,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2017,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2018,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2019,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2020,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bahrain,2021,0.1551,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2010,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2011,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2012,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2013,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2014,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2015,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2016,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2017,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2018,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2019,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2020,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bangladesh,2021,35.87,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2010,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2011,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2012,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2013,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2014,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2015,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2016,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2017,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2018,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2019,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2020,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Barbados,2021,0.07,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2010,1.548,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2011,1.536666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2012,1.525333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2013,1.514,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2014,1.571,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2015,1.448,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2016,1.452,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2017,1.397,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2018,1.39,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2019,1.358,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2020,1.328,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belarus,2021,1.425,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2010,5.953,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2011,5.082,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2012,5.3,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2013,4.829,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2014,4.556,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2015,3.994,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2016,4.193040325,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2017,4.39208065,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2018,4.175,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2019,4.199,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2020,4.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belgium,2021,4.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2010,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2011,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2012,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2013,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2014,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2015,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2016,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2017,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2018,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2019,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2020,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Belize,2021,0.101,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2010,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2011,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2012,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2013,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2014,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2015,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2016,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2017,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2018,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2019,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2020,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Benin,2021,0.13,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2010,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2011,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2012,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2013,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2014,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2015,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2016,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2017,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2018,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2019,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2020,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bhutan,2021,0.3379,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2010,2.09962644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2011,2.11125288,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2012,2.12287932,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2013,2.13450576,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2014,2.1461322,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2015,2.15775864,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2016,2.16938508,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2017,2.18101152,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2018,2.19263796,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2019,2.2042644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2020,2.2091419,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bolivia,2021,2.2049101,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2010,0.4354,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2011,0.4236,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2012,0.4377,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2013,0.4358,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2014,0.4124,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2015,0.4185,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2016,0.4196,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2017,0.4009,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2018,0.312,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2019,0.3055,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2020,0.301128,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bosnia and Herzegovina,2021,0.306447,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2010,0.196909091,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2011,0.1972,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2012,0.1944,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2013,0.19115,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2014,0.1879,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2015,0.1879,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2016,0.2013,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2017,0.193,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2018,0.204,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2019,0.202,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2020,0.2204276,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Botswana,2021,0.2336215,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2010,74.77075,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2011,72.315625,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2012,69.8605,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2013,67.405375,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2014,65.022,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2015,63.86,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2016,66.31,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2017,65.68,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2018,66.5,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2019,67.44,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2020,67.19,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brazil,2021,67.31,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2010,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2011,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2012,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2013,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2014,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2015,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2016,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2017,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2018,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2019,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2020,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Brunei,2021,0.092,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2010,5.96,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2011,6.385,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2012,5.7146,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2013,5.468,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2014,5.376,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2015,5.6294,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2016,5.689,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2017,5.658,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2018,5.425,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2019,5.422,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2020,5.076,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Bulgaria,2021,5.076,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2010,0.818,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2011,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2012,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2013,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2014,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2015,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2016,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2017,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2018,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2019,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2020,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burkina Faso,2021,0.818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2010,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2011,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2012,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2013,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2014,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2015,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2016,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2017,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2018,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2019,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2020,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Burundi,2021,0.2801,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2010,0.076333227,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2011,0.083437452,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2012,0.090541677,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2013,0.097645901,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2014,0.104750126,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2015,0.111854351,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2016,0.118958576,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2017,0.1260628,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2018,0.133167025,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2019,0.14687253,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2020,0.20683121,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cape Verde,2021,0.17153252,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2010,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2011,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2012,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2013,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2014,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2015,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2016,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2017,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2018,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2019,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2020,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cambodia,2021,2.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2010,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2011,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2012,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2013,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2014,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2015,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2016,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2017,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2018,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2019,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2020,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cameroon,2021,1.0884,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2010,37.19865,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2011,35.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2012,36.44,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2013,37.28,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2014,36.505,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2015,35.73,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2016,35.9915,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2017,36.253,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2018,36.253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2019,36.253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2020,36.253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Canada,2021,36.253,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2010,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2011,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2012,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2013,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2014,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2015,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2016,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2017,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2018,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2019,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2020,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Central African Republic,2021,0.0725,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2010,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2011,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2012,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2013,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2014,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2015,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2016,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2017,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2018,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2019,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2020,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chad,2021,0.8796,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2010,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2011,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2012,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2013,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2014,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2015,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2016,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2017,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2018,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2019,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2020,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Chile,2021,35.368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2010,586.83,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2011,595.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2012,598.8,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2013,602.8,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2014,593.4,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2015,591.8,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2016,604.02,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2017,596.22,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2018,592.91,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2019,602.12,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2020,568.48,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,China,2021,568.48,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2010,15.818086873,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2011,17.84563031,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2012,19.873173747,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2013,21.900717183,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2014,23.92826062,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2015,25.955804057,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2016,27.983347494,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2017,27.563634046,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2018,27.1439206,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2019,27.85185044,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2020,28.60974693,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Colombia,2021,29.33173364,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2010,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2011,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2012,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2013,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2014,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2015,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2016,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2017,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2018,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2019,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2020,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Comoros,2021,0.01,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2010,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2011,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2012,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2013,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2014,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2015,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2016,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2017,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2018,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2019,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2020,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Republic of Congo,2021,0.046,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2012,2.338321,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2013,2.466121,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2014,2.74369,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2015,3.194018,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2016,2.92271,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2017,2.44,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2018,3.05366,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2019,3.13813,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2020,3.13608,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Costa Rica,2021,3.44683,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2010,0.683004,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2011,0.664407,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2012,0.652752,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2013,0.628908,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2014,0.579912,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2015,0.620842,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2016,0.636611,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2017,0.675973,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2018,0.668706,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2019,0.672,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2020,0.658,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Croatia,2021,0.665,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2010,6.01895,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2011,6.332166667,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2012,6.645383333,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2013,6.958,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2014,6.958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2015,6.958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2016,6.958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2017,6.958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2018,6.958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2019,6.958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2020,6.958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cuba,2021,6.958,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2010,0.2009,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2011,0.2208,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2012,0.2553,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2013,0.2068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2014,0.217,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2015,0.232,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2016,0.218,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2017,0.216,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2018,0.207,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2019,0.202,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2020,0.231,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Cyprus,2021,0.235,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2010,1.951,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2011,1.887,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2012,1.8404,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2013,1.6503,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2014,1.65,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2015,1.6,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2016,1.6348,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2017,1.63,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2018,1.59,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2019,1.506,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2020,1.366,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Czech Republic,2021,1.349,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2010,1.333044444,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2011,1.290283333,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2012,1.248044444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2013,1.205022222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2014,1.162,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2015,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2016,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2017,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2018,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2019,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2020,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ivory Coast,2021,1.162,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2010,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2011,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2012,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2013,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2014,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2015,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2016,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2017,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2018,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2019,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2020,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,North Korea,2021,8.6578,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2010,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2011,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2012,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2013,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2014,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2015,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2016,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2017,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2018,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2019,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2020,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Democratic Republic of the Congo,2021,0.6836,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2010,0.8089,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2011,0.8657,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2012,0.7285,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2013,1.009,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2014,0.9892,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2015,0.8118,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2016,0.886995,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2017,0.895798,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2018,1.105817,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2019,0.945594,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2020,0.97643,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Denmark,2021,0.97643,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2010,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2011,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2012,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2013,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2014,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2015,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2016,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2017,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2018,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2019,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2020,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Djibouti,2021,0.019,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2010,0.02,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2011,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2012,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2013,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2014,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2015,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2016,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2017,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2018,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2019,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2020,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominica,2021,0.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2010,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2011,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2012,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2013,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2014,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2015,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2016,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2017,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2018,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2019,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2020,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Dominican Republic,2021,7.137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2010,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2011,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2012,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2013,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2014,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2015,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2016,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2017,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2018,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2019,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2020,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ecuador,2021,9.9158,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2010,73.8,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2011,71.65,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2012,72.3,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2013,73.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2014,60.7,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2015,60.9,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2016,60.65,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2017,77.5,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2018,77.5,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2019,77.5,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2020,77.5,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Egypt,2021,77.5,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2010,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2011,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2012,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2013,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2014,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2015,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2016,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2017,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2018,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2019,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2020,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,El Salvador,2021,2.118,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2010,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2011,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2012,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2013,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2014,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2015,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2016,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2017,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2018,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2019,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2020,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Equatorial Guinea,2021,0.0198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2010,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2011,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2012,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2013,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2014,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2015,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2016,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2017,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2018,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2019,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2020,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eritrea,2021,0.582,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2010,1.842,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2011,1.874,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2012,1.631,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2013,1.748,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2014,1.72,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2015,1.61534264,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2016,1.7514,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2017,1.7849,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2018,1.60854,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2019,1.00645,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2020,0.8529523,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Estonia,2021,0.999749643,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2010,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2011,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2012,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2013,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2014,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2015,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2016,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2017,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2018,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2019,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2020,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Eswatini,2021,1.068,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2010,9.082463636,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2011,9.326736364,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2012,9.571009091,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2013,9.815281818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2014,10.059554545,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2015,10.303827273,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2016,10.55,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2017,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2018,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2019,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2020,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ethiopia,2021,10.5481,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2010,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2011,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2012,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2013,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2014,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2015,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2016,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2017,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2018,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2019,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2020,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Fiji,2021,0.0849,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2010,4.8572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2011,4.431,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2012,4.0048,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2013,3.5786,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2014,3.1524,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2015,2.7262,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2016,2.3,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2017,2.3,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2018,2.8,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2019,3.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2020,3.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Finland,2021,3.0,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2010,28.578,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2011,30.146,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2012,28.063,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2013,27.157,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2014,27.297,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2015,28.116,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2016,26.436,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2017,26.946,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2018,26.92292431,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2019,26.21208613,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2020,24.67155198,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,France,2021,24.67155198,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2010,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2011,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2012,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2013,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2014,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2015,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2016,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2017,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2018,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2019,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2020,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gabon,2021,0.1391,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2010,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2011,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2012,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2013,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2014,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2015,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2016,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2017,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2018,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2019,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2020,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Gambia,2021,0.1016,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2010,1.7642875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2011,1.73493125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2012,1.705575,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2013,1.67621875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2014,1.6468625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2015,1.61750625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2016,1.58815,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2017,1.37453,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2018,1.29112,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2019,1.57214,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2020,1.65372,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Georgia,2021,1.60898,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2010,32.991,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2011,36.422802,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2012,33.647141,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2013,25.326,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2014,31.308092,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2015,29.833405,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2016,24.443,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2017,27.748404,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2018,26.921134,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2019,25.792569,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2020,25.792569,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Germany,2021,25.792569,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2010,1.25325,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2011,1.283375,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2012,1.3155,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2013,1.337625,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2014,1.36095,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2015,1.438475,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2016,1.4486,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2017,1.4486,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2018,1.4486,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2019,1.4486,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2020,1.4486,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ghana,2021,1.4486,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2010,9.855425,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2011,9.935,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2012,9.935,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2013,9.925,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2014,9.916,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2015,9.908,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2016,10.136,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2017,10.134,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2018,10.122,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2019,10.115,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2020,10.122,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Greece,2021,10.224,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2010,0.012277778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2011,0.012733333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2012,0.013188889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2013,0.013644444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2014,0.0141,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2015,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2016,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2017,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2018,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2019,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2020,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Grenada,2021,0.0141,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2010,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2011,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2012,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2013,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2014,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2015,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2016,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2017,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2018,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2019,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2020,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guatemala,2021,3.3241,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2010,0.695538461,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2011,0.719846154,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2012,0.744153846,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2013,0.768461538,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2014,0.792769231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2015,0.817076923,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2016,0.841384615,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2017,0.865692308,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2018,0.89,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2019,0.89,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2020,0.89,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea,2021,0.89,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2010,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2011,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2012,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2013,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2014,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2015,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2016,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2017,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2018,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2019,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2020,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guinea Bissau,2021,0.175,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2010,1.4447,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2011,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2012,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2013,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2014,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2015,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2016,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2017,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2018,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2019,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2020,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Guyana,2021,1.4447,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2010,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2011,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2012,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2013,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2014,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2015,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2016,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2017,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2018,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2019,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2020,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Haiti,2021,1.45,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2010,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2011,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2012,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2013,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2014,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2015,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2016,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2017,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2018,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2019,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2020,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Honduras,2021,1.607,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2010,5.37,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2011,5.225,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2012,5.051,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2013,5.25,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2014,3.923,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2015,4.03,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2016,3.959,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2017,4.73652,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2018,4.918461498,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2019,4.463075,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2020,4.6726,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Hungary,2021,4.6726,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2010,0.26315,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2011,0.278675,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2012,0.294,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2013,0.2911,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2014,0.2754,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2015,0.2795,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2016,0.26,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2017,0.29,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2018,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2019,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2020,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iceland,2021,0.29,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2010,647.5,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2011,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2012,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2013,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2014,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2015,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2016,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2017,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2018,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2019,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2020,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,India,2021,647.5,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2010,181.623125,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2011,188.4584375,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2012,195.29375,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2013,202.1290625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2014,208.964375,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2015,215.7996875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2016,222.635,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2017,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2018,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2019,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2020,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Indonesia,2021,222.635,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2010,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2011,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2012,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2013,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2014,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2015,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2016,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2017,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2018,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2019,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2020,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iran,2021,92.95,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2010,47.417885714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2011,45.560414286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2012,43.697942857,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2013,41.840471429,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2014,39.983,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2015,34.904,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2016,38.51,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2017,43.063,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2018,33.564,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2019,56.618,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2020,45.04,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Iraq,2021,42.4237,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2010,0.831444444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2011,0.905888889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2012,0.980333333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2013,1.054777778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2014,1.129222222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2015,1.203666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2016,1.278111111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2017,1.352555556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2018,1.427,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2019,1.538,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2020,1.544,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ireland,2021,1.581,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2010,1.34,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2011,1.3012,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2012,1.2624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2013,1.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2014,1.184,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2015,1.146,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2016,1.199,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2017,1.201,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2018,1.112,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2019,1.164,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2020,1.276,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Israel,2021,1.53,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2010,33.700952137,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2011,33.80847735,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2012,33.916002564,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2013,33.983527778,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2014,33.971822222,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2015,33.960116667,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2016,33.868411111,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2017,33.776705556,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2018,33.685,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2019,33.845,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2020,33.645,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Italy,2021,33.645,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2010,1.431428571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2011,1.461071429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2012,1.490714286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2013,1.520357143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2014,1.55,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2015,0.83,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2016,1.35,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2017,1.335986792,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2018,1.321973585,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2019,1.307960377,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2020,1.195555204,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jamaica,2021,1.340192487,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2010,81.004571429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2011,80.787142857,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2012,80.569714286,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2013,80.352285714,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2014,80.134857143,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2015,79.917428571,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2016,79.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2017,79.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2018,79.1,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2019,78.4,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2020,78.4,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Japan,2021,78.4,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2010,0.893,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2011,0.796,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2012,0.849,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2013,0.901,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2014,0.9698,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2015,0.8682,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2016,0.9036,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2017,0.9069,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2018,0.923,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2019,0.94184,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2020,0.95752,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Jordan,2021,0.92562,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2010,23.81,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2011,21.95,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2012,21.39,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2013,22.53,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2014,23.08,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2015,21.66,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2016,21.63,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2017,22.45,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2018,23.542,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2019,23.516,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2020,24.585,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kazakhstan,2021,24.585,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2010,3.218,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2011,3.2184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2012,3.2188,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2013,3.2192,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2014,3.2196,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2015,3.22,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2016,4.032,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2017,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2018,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2019,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2020,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kenya,2021,4.032,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2010,0.577953846,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2011,0.598323077,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2012,0.618692308,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2013,0.639061539,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2014,0.659430769,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2015,0.6798,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2016,0.715,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2017,0.7701,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2018,0.7701,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2019,0.7701,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2020,0.7701,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kuwait,2021,0.7701,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2010,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2011,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2012,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2013,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2014,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2015,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2016,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2017,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2018,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2019,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2020,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Kyrgyzstan,2021,7.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2010,5.758,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2011,6.211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2012,6.664,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2013,7.117,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2014,7.57,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2015,7.85,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2016,7.66,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2017,7.32,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2018,7.32,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2019,7.35,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2020,7.35,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Laos,2021,7.35,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2010,0.2752,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2011,0.3691,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2012,0.2482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2013,0.236,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2014,0.1685,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2015,0.1767,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2016,0.185857867,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2017,0.181117561,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2018,0.183349,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2019,0.178629,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2020,0.181211,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Latvia,2021,0.181211,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2010,1.454,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2011,1.5256,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2012,1.5972,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2013,1.6688,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2014,1.7404,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2015,1.812,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2016,1.812,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2017,1.812,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2018,1.812,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2019,1.812,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2020,1.812,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lebanon,2021,1.812,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2010,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2011,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2012,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2013,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2014,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2015,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2016,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2017,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2018,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2019,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2020,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lesotho,2021,0.0438,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2010,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2011,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2012,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2013,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2014,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2015,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2016,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2017,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2018,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2019,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2020,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Liberia,2021,0.1459,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2010,5.481857143,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2011,5.600928571,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2012,5.72,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2013,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2014,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2015,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2016,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2017,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2018,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2019,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2020,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Libya,2021,5.72,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2010,1.0358,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2011,0.6264,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2012,0.5368,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2013,0.4472,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2014,0.3576,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2015,0.3818,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2016,0.3079,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2017,0.259,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2018,0.25439,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2019,0.25439,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2020,0.25439,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Lithuania,2021,0.25439,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2010,0.0476,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2011,0.0463,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2012,0.0446,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2013,0.0431,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2014,0.046,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2015,0.0448,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2016,0.0444,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2017,0.0456,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2018,0.0522,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2019,0.0493,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2020,0.0478,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Luxembourg,2021,0.0478,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2010,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2011,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2012,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2013,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2014,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2015,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2016,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2017,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2018,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2019,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2020,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Madagascar,2021,13.4575,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2010,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2011,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2012,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2013,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2014,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2015,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2016,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2017,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2018,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2019,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2020,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malawi,2021,1.3568,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2010,6.030736842,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2011,6.069789474,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2012,6.108842105,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2013,6.147894737,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2014,6.186947368,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2015,6.226,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2016,6.552,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2017,6.707,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2018,6.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2019,6.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2020,6.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malaysia,2021,6.707,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2010,0.001014286,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2011,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2012,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2013,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2014,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2015,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2016,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2017,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2018,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2019,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2020,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Maldives,2021,0.0047,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2010,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2011,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2012,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2013,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2014,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2015,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2016,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2017,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2018,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2019,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2020,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mali,2021,5.186,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2010,0.0409,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2011,0.0381,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2012,0.0401,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2013,0.0461,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2014,0.045,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2015,0.0418,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2016,0.0419,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2017,0.046,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2018,0.042734617,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2019,0.040733787,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2020,0.041206636,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Malta,2021,0.039531436,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2010,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2011,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2012,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2013,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2014,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2015,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2016,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2017,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2018,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2019,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2020,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritania,2021,1.3482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2010,0.637,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2011,0.571,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2012,0.582,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2013,0.608,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2014,0.62,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2015,0.612,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2016,0.62,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2017,0.61,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2018,0.591,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2019,0.595,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2020,0.607,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mauritius,2021,0.604,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2010,79.63,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2011,79.48,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2012,82.73,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2013,81.65,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2014,84.93,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2015,85.66,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2016,86.577,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2017,87.84,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2018,88.84,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2019,89.351,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2020,89.548,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mexico,2021,89.944,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2010,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2011,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2012,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2013,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2014,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2015,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2016,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2017,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2018,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2019,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2020,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Monaco,2021,0.005,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2010,0.530766667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2011,0.510533333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2012,0.4903,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2013,0.470066667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2014,0.449833333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2015,0.4296,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2016,0.4624,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2017,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2018,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2019,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2020,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mongolia,2021,0.4624,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2010,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2011,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2012,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2013,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2014,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2015,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2016,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2017,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2018,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2019,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2020,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Montenegro,2021,0.1609,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2010,10.573,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2011,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2012,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2013,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2014,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2015,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2016,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2017,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2018,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2019,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2020,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Morocco,2021,10.573,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2010,1.281592857,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2011,1.319874286,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2012,1.358155714,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2013,1.396437143,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2014,1.434718571,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2015,1.473,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2016,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2017,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2018,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2019,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2020,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Mozambique,2021,1.473,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2010,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2011,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2012,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2013,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2014,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2015,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2016,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2017,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2018,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2019,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2020,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Myanmar,2021,33.231,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2010,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2011,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2012,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2013,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2014,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2015,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2016,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2017,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2018,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2019,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2020,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Namibia,2021,0.2819,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2010,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2011,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2012,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2013,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2014,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2015,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2016,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2017,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2018,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2019,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2020,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nepal,2021,9.4971,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2010,10.93,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2011,10.19,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2012,10.72,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2013,10.64,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2014,9.49,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2015,8.411,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2016,8.0234,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2017,7.9162,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2018,8.0902,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2019,8.4034,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2020,8.306,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Netherlands,2021,7.9462,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2010,5.201,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2011,6.3695,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2012,7.538,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2013,8.7065,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2014,9.875,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2015,9.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2016,9.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2017,9.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2018,9.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2019,9.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2020,9.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,New Zealand,2021,9.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2010,1.512021818,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2011,1.497132727,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2012,1.469118636,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2013,1.441104546,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2014,1.413090455,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2015,1.385076364,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2016,1.357062273,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2017,1.329048182,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2018,1.301034091,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2019,1.2724,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2020,1.27302,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nicaragua,2021,1.27302,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2010,1.276877778,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2011,1.335533333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2012,1.394188889,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2013,1.452844444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2014,1.5115,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2015,1.7215,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2016,1.7472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2017,1.581289,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2018,2.431511,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2019,2.5833078,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2020,2.5833078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Niger,2021,2.5833078,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2010,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2011,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2012,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2013,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2014,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2015,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2016,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2017,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2018,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2019,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2020,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Nigeria,2021,12.472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2010,0.909,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2011,0.7709,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2012,0.6328,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2013,0.4947,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2014,0.677741333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2015,0.860782667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2016,1.043824,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2017,1.598767,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2018,2.15371,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2019,1.59918,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2020,1.584035,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Macedonia,2021,1.56889,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2010,2.8056,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2011,2.7686,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2012,2.7317,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2013,2.7538,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2014,2.77877,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2015,2.71333,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2016,2.64789,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2017,2.69063,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2018,2.688451652,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2019,2.686463304,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2020,2.684324956,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Norway,2021,2.64249,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2010,1.4996,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2011,1.5444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2012,1.5892,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2013,1.634,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2014,1.634,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2015,1.634,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2016,1.634,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2017,1.634,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2018,1.634,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2019,1.634,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2020,1.634,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Oman,2021,1.634,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2010,185.28,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2011,179.48,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2012,187.88,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2013,183.5,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2014,194.87,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2015,196.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2016,199.77,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2017,199.97,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2018,192.74,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2019,177.11,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2020,189.59,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Pakistan,2021,264.19,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2010,0.2708,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2011,0.2669,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2012,0.2926,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2013,0.3024,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2014,0.2745,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2015,0.2912,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2016,0.2806,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2017,0.288,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2018,0.2997,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2019,0.3296,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2020,0.3524,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Palestine,2021,0.3348,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2010,1.037,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2011,1.096266667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2012,1.155533333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2013,1.2148,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2014,1.2011,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2015,1.2513,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2016,1.2114,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2017,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2018,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2019,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2020,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Panama,2021,1.2114,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2010,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2011,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2012,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2013,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2014,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2015,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2016,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2017,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2018,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2019,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2020,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Papua New Guinea,2021,0.3921,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2010,2.131348485,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2011,2.25275,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2012,2.413,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2013,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2014,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2015,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2016,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2017,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2018,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2019,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2020,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Paraguay,2021,2.413,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2010,18.31915236,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2011,20.69622854,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2012,23.07330472,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2013,25.4503809,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2014,27.82745708,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2015,30.20453326,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2016,32.581609439,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2017,34.95868562,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2018,37.335761799,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2019,38.55,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2020,38.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Peru,2021,38.55,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2010,83.273,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2011,84.059,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2012,84.248,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2013,84.447,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2014,84.432,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2015,86.4,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2016,87.11,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2017,91.79128,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2018,92.15781079,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2019,85.99451398,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2020,87.47726918,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Philippines,2021,89.00036353,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2010,10.87,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2011,11.91,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2012,11.47,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2013,11.24,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2014,10.631,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2015,10.448,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2016,10.289,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2017,10.08,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2018,9.598,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2019,8.983979,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2020,8.667,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Poland,2021,9.267,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2010,8.945866667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2011,8.879155556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2012,8.812444444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2013,8.745733333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2014,8.679022222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2015,8.612311111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2016,8.5456,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2017,6.16147,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2018,6.12953,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2019,6.12953,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2020,6.12953,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Portugal,2021,6.12953,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2010,1.017,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2011,0.98836,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2012,0.9602,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2013,0.9318,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2014,0.9034,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2015,0.875,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2016,0.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2017,0.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2018,0.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2019,0.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2020,0.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Puerto Rico,2021,0.875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2010,0.23775,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2011,0.2419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2012,0.24605,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2013,0.2502,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2014,0.2521,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2015,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2016,0.2508,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2017,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2018,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2019,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2020,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Qatar,2021,0.25,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2010,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2011,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2012,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2013,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2014,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2015,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2016,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2017,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2018,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2019,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2020,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Korea,2021,29.197,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2010,0.851,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2011,0.847,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2012,0.85,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2013,0.839,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2014,0.837,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2015,0.84,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2016,0.843,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2017,0.84,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2018,0.837,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2019,0.839,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2020,0.846,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Moldova,2021,0.846,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2010,6.219,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2011,6.592,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2012,6.482,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2013,6.418,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2014,6.282,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2015,6.465,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2016,6.374,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2017,6.773,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2018,6.416,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2019,6.993,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2020,7.396,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Romania,2021,7.864,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2010,69.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2011,61.866666667,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2012,64.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2013,61.0,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2014,70.81,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2015,62.44,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2016,64.79,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2017,64.41,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2018,64.82,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2019,64.82,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2020,64.82,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Russia,2021,64.82,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2010,0.376153759,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2011,0.401025564,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2012,0.425897368,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2013,0.450769173,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2014,0.475640977,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2015,0.500512782,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2016,0.525384586,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2017,0.550256391,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2018,0.575128196,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2019,0.61,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2020,0.61,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Rwanda,2021,0.61,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2012,0.0122,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2013,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2014,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2015,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2016,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2017,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2018,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2019,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2020,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Kitts and Nevis,2021,0.0122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2010,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2011,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2012,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2013,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2014,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2015,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2016,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2017,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2018,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2019,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2020,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Lucia,2021,0.0429,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2010,0.0085,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2011,0.0083,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2012,0.0081,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2013,0.0079,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2014,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2015,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2016,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2017,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2018,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2019,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2020,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saint Vincent and the Grenadines,2021,0.0079,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2010,0.032056522,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2011,0.033530435,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2012,0.035004348,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2013,0.036478261,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2014,0.037952174,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2015,0.039426087,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2016,0.0409,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2017,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2018,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2019,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2020,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sao Tome and Principe,2021,0.0409,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2010,21.948333333,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2011,21.775416667,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2012,21.6025,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2013,21.46175,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2014,21.473,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2015,22.773,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2016,22.31,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2017,22.943,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2018,23.38,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2019,23.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2020,23.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Saudi Arabia,2021,23.38,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2010,2.357317659,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2011,2.374363617,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2012,2.391409574,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2013,2.408455531,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2014,2.425501489,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2015,2.442547446,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2016,2.459593404,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2017,2.47460652,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2018,3.0258,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2019,3.0616,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2020,3.0616,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Senegal,2021,3.0616,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2010,4.419,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2011,4.75,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2012,4.403,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2013,4.709,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2014,3.935,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2015,4.689,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2016,4.707,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2017,5.377,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2018,5.5575,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2019,5.618,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2020,5.315,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Serbia,2021,5.051,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2010,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2011,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2012,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2013,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2014,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2015,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2016,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2017,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2018,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2019,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2020,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Seychelles,2021,0.011294,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2010,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2011,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2012,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2013,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2014,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2015,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2016,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2017,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2018,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2019,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2020,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sierra Leone,2021,0.2122,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2010,1.3194675,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2011,1.125834,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2012,0.9602005,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2013,0.794567,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2014,0.6510335,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2015,0.5075,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2016,0.5098,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2017,0.4993,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2018,0.4883,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2019,0.493,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2020,0.4987,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Singapore,2021,0.4987,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2010,0.6007,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2011,0.5931,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2012,0.6653,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2013,0.6374,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2014,0.5593,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2015,0.5736,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2016,0.5553,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2017,0.5563,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2018,0.5565,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2019,0.5586,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2020,0.555,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovakia,2021,0.5662731,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2010,0.9255,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2011,0.8503,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2012,0.928,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2013,1.1556,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2014,0.9803,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2015,0.897,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2016,0.8873,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2017,0.9314,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2018,0.961,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2019,0.944,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2020,1.003,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Slovenia,2021,0.931,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2010,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2011,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2012,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2013,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2014,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2015,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2016,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2017,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2018,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2019,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2020,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Somalia,2021,3.298,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2010,14.861461539,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2011,15.074307692,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2012,15.287153846,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2013,14.286,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2014,16.473,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2015,18.66,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2016,19.05,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2017,19.38,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2018,19.64,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2019,20.0,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2020,20.31,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Africa,2021,20.89,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2012,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2013,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2014,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2015,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2016,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2017,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2018,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2019,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2020,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,South Sudan,2021,0.658,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2010,35.01,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2011,35.07,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2012,36.75,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2013,32.35,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2014,32.859,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2015,31.51,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2016,31.221,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2017,30.094,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2018,29.409,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2019,29.2145,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2020,29.02,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Spain,2021,29.02,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2010,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2011,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2012,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2013,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2014,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2015,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2016,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2017,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2018,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2019,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2020,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sri Lanka,2021,12.946,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2012,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2013,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2014,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2015,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2016,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2017,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2018,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2019,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2020,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sudan,2021,26.935,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2010,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2011,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2012,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2013,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2014,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2015,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2016,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2017,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2018,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2019,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2020,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Suriname,2021,0.6159,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2010,2.689,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2011,2.6262,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2012,2.5634,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2013,2.5006,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2014,2.4378,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2015,2.375,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2016,2.3966,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2017,2.4182,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2018,2.4398,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2019,2.4614,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2020,2.483,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Sweden,2021,2.483,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2010,2.1072,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2011,2.05585,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2012,2.0,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2013,1.72,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2014,1.704,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2015,1.705917,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2016,1.704,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2017,1.704,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2018,1.704,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2019,1.704,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2020,1.704,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Switzerland,2021,1.704,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2010,14.0544,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2011,14.0094,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2012,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2013,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2014,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2015,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2016,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2017,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2018,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2019,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2020,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Syria,2021,13.9644,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2010,10.850355556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2011,10.764244444,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2012,10.678133333,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2013,10.592022222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2014,10.505911111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2015,10.4198,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2016,8.749,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2017,7.988,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2018,9.774,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2019,10.602,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2020,10.602,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tajikistan,2021,10.602,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2010,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2011,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2012,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2013,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2014,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2015,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2016,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2017,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2018,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2019,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2020,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Thailand,2021,57.307,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2010,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2011,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2012,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2013,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2014,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2015,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2016,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2017,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2018,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2019,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2020,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,East Timor,2021,1.172,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2010,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2011,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2012,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2013,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2014,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2015,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2016,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2017,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2018,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2019,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2020,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Togo,2021,0.223,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2010,0.331666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2011,0.3362,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2012,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2013,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2014,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2015,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2016,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2017,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2018,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2019,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2020,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Trinidad and Tobago,2021,0.3362,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2010,3.116,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2011,3.217,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2012,3.3188,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2013,3.4206,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2014,3.5224,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2015,3.6242,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2016,3.726,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2017,3.526,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2018,3.78072,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2019,3.793,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2020,3.864,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Tunisia,2021,3.864,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2010,27.96608,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2011,27.99135,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2012,28.01662,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2013,28.04189,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2014,28.06716,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2015,28.09243,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2016,28.1177,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2017,28.8562,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2018,26.88,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2019,27.7081,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2020,26.245,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkmenistan,2021,26.245,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2010,46.96,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2011,48.735,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2012,50.51,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2013,51.24,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2014,51.97,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2015,53.71,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2016,59.61,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2017,58.788985,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2018,61.09358,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2019,62.30965,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2020,63.49572,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Turkey,2021,58.4,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2010,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2011,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2012,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2013,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2014,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2015,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2016,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2017,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2018,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2019,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2020,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uganda,2021,0.637,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2010,14.85,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2011,13.86225,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2012,12.8745,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2013,11.88675,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2014,10.899,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2015,9.109,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2016,9.325,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2017,10.705,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2018,10.705,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2019,10.596,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2020,9.459,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Ukraine,2021,9.459,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2010,2.672272727,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2011,2.646727273,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2012,2.621181818,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2013,2.595636364,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2014,2.570090909,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2015,2.544545455,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2016,2.519,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2017,2.445,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2018,2.501,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2019,2.443,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2020,2.381,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Arab Emirates,2021,2.3,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2010,8.264,10^9 m3/year,X,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2011,7.685,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2012,8.017,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2013,7.651,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2014,7.285,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2015,8.16,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2016,8.419,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2017,8.419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2018,8.419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2019,8.419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2020,8.419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Kingdom,2021,8.419,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2010,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2011,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2012,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2013,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2014,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2015,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2016,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2017,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2018,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2019,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2020,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United Republic of Tanzania,2021,5.184,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2010,418.7,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2011,423.919222355,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2012,429.03844471,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2013,434.157667065,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2014,439.27688942,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2015,444.396111775,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2016,444.396111775,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2017,444.396111775,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2018,444.396111775,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2019,444.396111775,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2020,444.396111775,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,United States of America,2021,444.396111775,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2010,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2011,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2012,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2013,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2014,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2015,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2016,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2017,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2018,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2019,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2020,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uruguay,2021,3.66,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2010,49.882222222,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2011,50.026666667,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2012,50.171111111,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2013,50.315555556,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2014,50.46,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2015,55.14,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2016,54.55,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2017,58.9,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2018,55.926,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2019,52.948,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2020,49.955,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Uzbekistan,2021,42.484,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2010,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2011,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2012,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2013,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2014,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2015,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2016,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2017,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2018,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2019,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2020,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Venezuela,2021,22.6211,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2010,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2011,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2012,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2013,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2014,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2015,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2016,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2017,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2018,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2019,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2020,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Vietnam,2021,81.862,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2010,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2011,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2012,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2013,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2014,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2015,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2016,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2017,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2018,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2019,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2020,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Yemen,2021,3.565,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2010,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2011,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2012,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2013,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2014,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2015,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2016,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2017,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2018,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2019,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2020,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zambia,2021,1.572,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2010,3.5046375,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2011,3.48285,10^9 m3/year,E,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2012,3.460625,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2013,3.43875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2014,3.416875,10^9 m3/year,I,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2015,3.395,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2016,3.402,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2017,3.339,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2018,3.771381651,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2019,4.236264373,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2020,4.909679395,10^9 m3/year,-,False
+Water use,Water withdrawal by source,Total freshwater withdrawal,Zimbabwe,2021,4.909679395,10^9 m3/year,I,False
diff --git a/src/data/pretraitement de donnees.py b/src/data/pretraitement de donnees.py
new file mode 100644
index 0000000000000000000000000000000000000000..51e31a53573fb31801f5c3378eb054570cfb3fa7
--- /dev/null
+++ b/src/data/pretraitement de donnees.py	
@@ -0,0 +1,59 @@
+import pandas as pd
+
+def clean_water_data(input_csv, output_csv):
+    """
+    Cette fonction nettoie un fichier CSV en :
+    1. Supprimant les lignes où la colonne 'IsAggregate' est 'True'.
+    2. Remplaçant certains noms de pays par leur forme simplifiée.
+    3. Sauvegardant le fichier nettoyé dans un nouveau CSV.
+
+    :param input_csv: Chemin du fichier CSV d'entrée.
+    :param output_csv: Chemin du fichier CSV de sortie nettoyé.
+    """
+
+    # Charger le fichier CSV
+    df = pd.read_csv(input_csv)
+
+    # Supprimer les lignes où 'IsAggregate' est True
+    df_filtered = df[df["IsAggregate"] != True]
+
+    # Dictionnaire de remplacement des noms de pays
+    country_replacements = {
+        "Russian Federation": "Russia",
+        "Democratic People's Republic of Korea": "North Korea",
+        "Republic of Korea": "South Korea",
+        "Türkiye": "Turkey",
+        "Syrian Arab Republic": "Syria",
+        "Bolivia (Plurinational State of)": "Bolivia",
+        "Côte d'Ivoire": "Ivory Coast",
+        "Czechia": "Czech Republic",
+        "Venezuela (Bolivarian Republic of)" : "Venezuela",
+        "Republic of Moldova":"Moldova",
+        "Netherlands (Kingdom of the)" : "Netherlands",
+        "Lao People's Democratic Republic" : "Laos",
+        "Iran (Islamic Republic of)" : "Iran",
+        "Viet Nam" : "Vietnam",
+        "Bahamas" : "The Bahamas",
+        "Congo" : "Republic of Congo",
+        "Cabo Verde" : "Cape Verde",
+        "United Kingdom of Great Britain and Northern Ireland":"United Kingdom",
+        "Guinea-Bissau":"Guinea Bissau",
+        "Brunei Darussalam" : "Brunei",
+        "North Macedonia" : "Macedonia",
+        "Timor-Leste": "East Timor"
+
+    }
+
+    # Remplacer les noms de pays dans la colonne 'Area'
+    df_filtered.loc[:, "Area"] = df_filtered["Area"].replace(country_replacements)
+
+    # Sauvegarder le fichier nettoyé
+    df_filtered.to_csv(output_csv, index=False)
+
+    print(f"✅ Fichier nettoyé enregistré : {output_csv}")
+
+# Exemple d'utilisation
+input_file = "waterplease2_final.csv"  # Chemin du fichier d'origine
+output_file = "cleaned_waterplease_final.csv"  # Chemin du fichier nettoyé
+
+clean_water_data(input_file, output_file)
diff --git a/src/index.md b/src/index.md
index dcd48977dba8514aef434324d63f25cc759ba784..b97da68f43c479ee027d49213d37bd9b5311f025 100644
--- a/src/index.md
+++ b/src/index.md
@@ -1,71 +1,79 @@
----
-theme: dashboard
-title: Hydro Analytics - Centrale Lyon
-toc: false
+# Water Withdrawal Analysis Dashboard
+
 ---
 
-# Hydro Analytics || Centrale Lyon
+## Contexte
 
-# Water Withdrawal Analysis Dashboard
+L'eau est une ressource essentielle pour la vie, l'agriculture, l'industrie et les écosystèmes. Cependant, avec la croissance démographique, l'urbanisation et le changement climatique, la pression sur les ressources en eau ne cesse d'augmenter. Les secteurs agricoles, industriels et domestiques sont les principaux consommateurs d'eau, et leur demande croissante peut entraîner des déséquilibres dans la répartition des ressources, des conflits d'usage, et une dégradation des écosystèmes aquatiques.
+
+La base de données fournie contient des informations détaillées sur l'usage de l'eau par secteur (agricole, industriel, domestique) et par source (eaux de surface, eaux souterraines, etc.), ainsi que des variables telles que la quantité d'eau prélevée, l'année, la région, et l'unité de mesure. Ces données peuvent être utilisées pour analyser les tendances historiques, identifier les zones de stress hydrique, et évaluer l'efficacité des politiques de gestion de l'eau.
+
+## Objectif de la Visualisation Interactive
+
+Une visualisation interactive de ces données permettra de :
+
+- Identifier les tendances globales et régionales : En visualisant l'évolution de l'usage de l'eau par secteur et par source sur plusieurs années, il sera possible de détecter des tendances à la hausse ou à la baisse dans différentes régions du monde. Cela peut aider à anticiper les futurs besoins en eau et à planifier des infrastructures adaptées.
+
+- Détecter les déséquilibres dans la répartition des ressources : En comparant les prélèvements d'eau par secteur dans différentes régions, il sera possible d'identifier les zones où la demande en eau dépasse les ressources disponibles, ce qui peut conduire à des pénuries d'eau et à des conflits d'usage.
+
+- Évaluer l'efficacité des politiques de gestion de l'eau : En visualisant les données sur l'usage de l'eau avant et après la mise en œuvre de politiques spécifiques (comme des restrictions d'usage ou des incitations à l'irrigation économe en eau), il sera possible d'évaluer leur impact et de proposer des ajustements si nécessaire.
+
+- Sensibiliser et informer les décideurs et le public : Une visualisation interactive peut rendre les données complexes plus accessibles et compréhensibles pour un large public, y compris les décideurs politiques, les chercheurs, et les citoyens. Cela peut favoriser une prise de conscience des enjeux liés à l'eau et encourager des comportements plus responsables.
+
+## Visualisations Interactives
+
+### 1. Analyse des Séries Temporelles:
+
+- Suivi des tendances des prélèvements d'eau au fil du temps
+
+- Affichage simultané de plusieurs variables
+
+- Mise à l'échelle dynamique en fonction de la plage de données
+
+### 2. Comparaison des 5 Régions Principales:
+
+- Diagramme à barres montrant les régions leaders
+
+- Personnalisable par sélection de variables
 
-## Overview
+- Représentation visuelle claire des magnitudes relatives
 
-This interactive dashboard visualizes global water withdrawal data across different sectors and regions. It provides insights into water usage patterns, environmental flow requirements, and comparative analysis between regions.
+### 3. Carte Mondiale:
 
-## Features
+- Diagramme circulaire (camembert) pour chaque pays
 
-### Interactive Visualizations
+- Personnalisable par sélection de sous-groupe et d'année
 
-1. **Time Series Analysis**
+- Représentation visuelle claire des magnitudes relatives
 
-   - Tracks water withdrawal trends over time
-   - Multiple variables displayed simultaneously
-   - Dynamic scaling based on data range
+## Options de Filtrage des Données
 
-2. **Top 5 Regions Comparison**
-   - Bar chart showing leading regions
-   - Customizable by variable selection
-   - Clear visual representation of relative magnitudes
+1. Sélection de Pays : Choisir des pays spécifiques pour une analyse détaillée
 
-### Data Filtering Options
+2. Filtre par Sous-Groupe : Se concentrer sur des catégories spécifiques de prélèvements d'eau
 
-- **Country Selection**: Choose specific countries for detailed analysis
-- **Subgroup Filter**: Focus on particular water withdrawal categories
-- **Unit Selection**: Toggle between different measurement units
-- **Environmental Flow**: Option to include/exclude environmental flow requirements
-- **Variable Selection**: Choose specific metrics for the Top 5 comparison
+3. Sélection d'Unité : Basculer entre différentes unités de mesure
 
-## Data Sources and Metrics
+4. Débit Environnemental : Option pour inclure/exclure les exigences de débit environnemental
 
-The dashboard uses comprehensive water withdrawal data including:
+5. Sélection de Variables : Choisir des métriques spécifiques pour la comparaison des 5 principales régions
 
-- Agricultural water withdrawal
-- Industrial water withdrawal
-- Municipal water withdrawal
-- Environmental flow requirements
-- Total water withdrawal
+## Sources de Données et Métriques
 
-## How to Use
+Le tableau de bord utilise des données complètes sur les prélèvements d'eau, notamment :
 
-1. Use the selector panel to choose your desired filters
-2. The time series chart will update automatically
-3. The Top 5 comparison will reflect your variable selection
-4. Toggle environmental flow requirements as needed
+- Prélèvements d'eau agricole
 
-## Technical Implementation
+- Prélèvements d'eau industrielle
 
-Built using:
+- Prélèvements d'eau municipale
 
-- Observable Framework
-- Plot.js for visualizations
-- Reactive data handling
-- Dynamic scaling and responsive design
+- Exigences de débit environnemental
 
-## Future Enhancements
+- Prélèvements d'eau totaux
 
-Potential additions to consider:
+## Perspectives du projet
 
-- Additional comparative metrics
-- More detailed regional breakdowns
-- Seasonal variation analysis
-- Predictive trend analysis
+1. On pourra envisager d'améliorer les performances de l'affichage des graphes en terme de rapidité et de responsivité.
+2. On pourra ajouter des animations et des transitions pour une meilleure et fluide visualisation.
+3. On pourra aussi envisager de faire des visualisations plus approfondies, comme des visualisations de comparaison entre pays ou bien des selections de visualisation pour visualiser que les variables dont on a intérêt.